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 <cpmichael@osg.samsung.com>
This commit is contained in:
Chris Michael 2016-03-01 10:52:50 -05:00 committed by Mike Blumenkrantz
parent b7f1fa0b53
commit c97b52b02c
1 changed files with 7 additions and 0 deletions

View File

@ -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