From 31f6268fd45e270c3fcf906ff517622bae781755 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Tue, 9 Apr 2013 11:06:31 +0100 Subject: [PATCH] Add function prototypes for surface_destroy and region_destroy. Signed-off-by: Chris Michael --- src/bin/e_comp_wl.c | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c index 305975a0f..6210ac211 100644 --- a/src/bin/e_comp_wl.c +++ b/src/bin/e_comp_wl.c @@ -9,7 +9,9 @@ static Eina_Bool _e_comp_wl_cb_idle(void *data EINA_UNUSED); /* compositor interface prototypes */ static void _e_comp_wl_cb_surface_create(struct wl_client *client, struct wl_resource *resource, unsigned int id); +static void _e_comp_wl_cb_surface_destroy(struct wl_resource *resource); static void _e_comp_wl_cb_region_create(struct wl_client *client, struct wl_resource *resource, unsigned int id); +static void _e_comp_wl_cb_region_destroy(struct wl_resource *resource); /* input function prototypes */ static Eina_Bool _e_comp_wl_input_init(void); @@ -256,12 +258,24 @@ _e_comp_wl_cb_surface_create(struct wl_client *client, struct wl_resource *resou } +static void +_e_comp_wl_cb_surface_destroy(struct wl_resource *resource) +{ + +} + static void _e_comp_wl_cb_region_create(struct wl_client *client, struct wl_resource *resource, unsigned int id) { } +static void +_e_comp_wl_cb_region_destroy(struct wl_resource *resource) +{ + +} + /* input functions */ static Eina_Bool _e_comp_wl_input_init(void) @@ -862,4 +876,3 @@ _e_comp_wl_pointer_cb_cursor_set(struct wl_client *client, struct wl_resource *r _e_comp_wl_pointer_configure(ews, 0, 0, bw, bh); } } -