discomfitor pushed a commit to branch enlightenment-0.20.

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

commit b113fd96fb45ba5083c0da34998e777fb53f7c66
Author: Chris Michael <cpmich...@osg.samsung.com>
Date:   Tue Mar 1 10:27:13 2016 -0500

    add prototype functions for missing wl_data_offer interface
    
    As we require wayland 1.10 now, there were missing functions for
    wl_data_offer 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 | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/src/bin/e_comp_wl_data.c b/src/bin/e_comp_wl_data.c
index 54a6f70..6df9d13 100644
--- a/src/bin/e_comp_wl_data.c
+++ b/src/bin/e_comp_wl_data.c
@@ -48,6 +48,18 @@ _e_comp_wl_data_offer_cb_destroy(struct wl_client *client 
EINA_UNUSED, struct wl
    wl_resource_destroy(resource);
 }
 
+static void
+_e_comp_wl_data_offer_cb_finish(struct wl_client *client EINA_UNUSED, struct 
wl_resource *resource EINA_UNUSED)
+{
+   /* TODO: implement */
+}
+
+static void
+_e_comp_wl_data_offer_cb_actions_set(struct wl_client *client EINA_UNUSED, 
struct wl_resource *resource EINA_UNUSED, uint32_t actions EINA_UNUSED, 
uint32_t preferred_action EINA_UNUSED)
+{
+   /* TODO: implement */
+}
+
 /* called by wl_resource_destroy */
 static void
 _e_comp_wl_data_offer_cb_resource_destroy(struct wl_resource *resource)
@@ -82,6 +94,8 @@ static const struct wl_data_offer_interface 
_e_data_offer_interface =
    _e_comp_wl_data_offer_cb_accept,
    _e_comp_wl_data_offer_cb_receive,
    _e_comp_wl_data_offer_cb_destroy,
+   _e_comp_wl_data_offer_cb_finish,
+   _e_comp_wl_data_offer_cb_actions_set,
 };
 
 static void

-- 


Reply via email to