summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cpmichael@osg.samsung.com>2016-03-01 10:45:21 -0500
committerChris Michael <cpmichael@osg.samsung.com>2016-03-01 10:45:21 -0500
commitdfce9c44fe62c510faf0550885aba532f7ba0734 (patch)
tree02d0dcc3c412be4b3bd5648d038fb2c8d127d1ef
parent0275987d6905503f8c9ead6067eac610b7fbf6d3 (diff)
downloadenlightenment-dfce9c44fe62c510faf0550885aba532f7ba0734.tar.gz
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>
-rw-r--r--src/bin/e_comp_wl_input.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/bin/e_comp_wl_input.c b/src/bin/e_comp_wl_input.c
index c733be15b1..07d1196a2f 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