add prototype function for missing wl_seat interface

As we require wayland 1.10 now, the wl_seat_interface implementation
was missing a function pointer for the 'release' request. This patch
just implements a function placeholder until we can implement it.

Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
This commit is contained in:
Chris Michael 2016-03-01 10:45:21 -05:00
parent 0275987d69
commit dfce9c44fe
1 changed files with 7 additions and 0 deletions

View File

@ -240,11 +240,18 @@ _e_comp_wl_input_cb_touch_get(struct wl_client *client EINA_UNUSED, struct wl_re
_e_comp_wl_input_cb_touch_unbind);
}
static void
_e_comp_wl_input_cb_release(struct wl_client *client EINA_UNUSED, struct wl_resource *resource EINA_UNUSED)
{
/* TODO: implement */
}
static const struct wl_seat_interface _e_seat_interface =
{
_e_comp_wl_input_cb_pointer_get,
_e_comp_wl_input_cb_keyboard_get,
_e_comp_wl_input_cb_touch_get,
_e_comp_wl_input_cb_release,
};
static void