From dfce9c44fe62c510faf0550885aba532f7ba0734 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Tue, 1 Mar 2016 10:45:21 -0500 Subject: [PATCH] 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 --- src/bin/e_comp_wl_input.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/bin/e_comp_wl_input.c b/src/bin/e_comp_wl_input.c index c733be15b..07d1196a2 100644 --- a/src/bin/e_comp_wl_input.c +++ b/src/bin/e_comp_wl_input.c @@ -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