From 5b8d133d76fff1c156244c2fc02e88d218c5bf16 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Tue, 1 Mar 2016 10:52:50 -0500 Subject: [PATCH] add prototype functions for missing wl_data_source interface As we require wayland 1.10 now, there were missing functions for the wl_data_source interface. This patch just adds placeholders for those missing functions until we can implement them Signed-off-by: Chris Michael --- src/bin/e_comp_wl_data.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/bin/e_comp_wl_data.c b/src/bin/e_comp_wl_data.c index 491c5df8d..7f2c967e3 100644 --- a/src/bin/e_comp_wl_data.c +++ b/src/bin/e_comp_wl_data.c @@ -120,6 +120,12 @@ _e_comp_wl_data_source_cb_destroy(struct wl_client *client EINA_UNUSED, struct w wl_resource_destroy(resource); } +static void +_e_comp_wl_data_source_cb_actions_set(struct wl_client *client EINA_UNUSED, struct wl_resource *resource EINA_UNUSED, uint32_t actions EINA_UNUSED) +{ + /* TODO: implement */ +} + /* called by wl_resource_destroy */ static void _e_comp_wl_data_source_cb_resource_destroy(struct wl_resource *resource) @@ -161,6 +167,7 @@ static const struct wl_data_source_interface _e_data_source_interface = { _e_comp_wl_data_source_cb_offer, _e_comp_wl_data_source_cb_destroy, + _e_comp_wl_data_source_cb_actions_set, }; static void