add missing EINA_UNUSED

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-06-03 16:15:52 -04:00 committed by Chris Michael
parent 84f5c2f608
commit 92fd5b4be1
3 changed files with 6 additions and 6 deletions

View File

@ -3,13 +3,13 @@
#include "e_comp_wl_data.h" #include "e_comp_wl_data.h"
static void static void
_e_comp_wl_data_device_cb_drag_start(struct wl_client *client, struct wl_resource *resource, struct wl_resource *source_resource, struct wl_resource *origin_resource, struct wl_resource *icon_resource, uint32_t serial) _e_comp_wl_data_device_cb_drag_start(struct wl_client *client EINA_UNUSED, struct wl_resource *resource EINA_UNUSED, struct wl_resource *source_resource EINA_UNUSED, struct wl_resource *origin_resource EINA_UNUSED, struct wl_resource *icon_resource EINA_UNUSED, uint32_t serial EINA_UNUSED)
{ {
} }
static void static void
_e_comp_wl_data_device_cb_selection_set(struct wl_client *client, struct wl_resource *resource, struct wl_resource *source_resource, uint32_t serial) _e_comp_wl_data_device_cb_selection_set(struct wl_client *client EINA_UNUSED, struct wl_resource *resource EINA_UNUSED, struct wl_resource *source_resource EINA_UNUSED, uint32_t serial EINA_UNUSED)
{ {
} }
@ -21,7 +21,7 @@ static const struct wl_data_device_interface _e_data_device_interface =
}; };
static void static void
_e_comp_wl_data_manager_cb_source_create(struct wl_client *client, struct wl_resource *resource, uint32_t id) _e_comp_wl_data_manager_cb_source_create(struct wl_client *client EINA_UNUSED, struct wl_resource *resource EINA_UNUSED, uint32_t id EINA_UNUSED)
{ {
/* NB: New resource */ /* NB: New resource */
} }
@ -109,7 +109,7 @@ e_comp_wl_data_manager_init(E_Comp_Wl_Data *cdata)
} }
EINTERN void EINTERN void
e_comp_wl_data_manager_shutdown(E_Comp_Wl_Data *cdata) e_comp_wl_data_manager_shutdown(E_Comp_Wl_Data *cdata EINA_UNUSED)
{ {
/* destroy the global manager resource */ /* destroy the global manager resource */
/* if (cdata->mgr.global) wl_global_destroy(cdata->mgr.global); */ /* if (cdata->mgr.global) wl_global_destroy(cdata->mgr.global); */

View File

@ -30,7 +30,7 @@ _e_comp_wl_input_cb_resource_destroy(struct wl_client *client EINA_UNUSED, struc
} }
static void static void
_e_comp_wl_input_pointer_cb_cursor_set(struct wl_client *client, struct wl_resource *resource, uint32_t serial, struct wl_resource *surface_resource, int32_t x, int32_t y) _e_comp_wl_input_pointer_cb_cursor_set(struct wl_client *client EINA_UNUSED, struct wl_resource *resource EINA_UNUSED, uint32_t serial EINA_UNUSED, struct wl_resource *surface_resource EINA_UNUSED, int32_t x EINA_UNUSED, int32_t y EINA_UNUSED)
{ {
E_Comp_Wl_Data *cdata; E_Comp_Wl_Data *cdata;

View File

@ -429,7 +429,7 @@ _e_xdg_shell_surface_cb_transient_for_set(struct wl_client *client EINA_UNUSED,
} }
static void static void
_e_xdg_shell_surface_cb_margin_set(struct wl_client *client EINA_UNUSED, struct wl_resource *resource, int32_t l, int32_t r, int32_t t, int32_t b) _e_xdg_shell_surface_cb_margin_set(struct wl_client *client EINA_UNUSED, struct wl_resource *resource EINA_UNUSED, int32_t l, int32_t r, int32_t t, int32_t b)
{ {
/* E_Client *ec; */ /* E_Client *ec; */
/* int32_t diff; */ /* int32_t diff; */