devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=5b8d133d76fff1c156244c2fc02e88d218c5bf16

commit 5b8d133d76fff1c156244c2fc02e88d218c5bf16
Author: Chris Michael <cpmich...@osg.samsung.com>
Date:   Tue Mar 1 10:52:50 2016 -0500

    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 <cpmich...@osg.samsung.com>
---
 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 491c5df..7f2c967 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

-- 


Reply via email to