From b9c4911374e6b2b86fbcee48539bf3eab9eacfaa Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 28 Sep 2015 15:51:51 -0400 Subject: [PATCH] s/EAPI/E_API/ ...again --- src/bin/e_acpi.c | 2 +- src/bin/e_comp_object.c | 2 +- src/bin/e_comp_object.h | 2 +- src/bin/e_comp_wl_input.c | 4 ++-- src/bin/e_comp_wl_input.h | 2 +- src/modules/wl_text_input/e_mod_main.c | 6 +++--- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/bin/e_acpi.c b/src/bin/e_acpi.c index aeb2e6d0c..bc6b11a35 100644 --- a/src/bin/e_acpi.c +++ b/src/bin/e_acpi.c @@ -192,7 +192,7 @@ e_acpi_lid_status_get(void) return E_ACPI_LID_UNKNOWN; } -EAPI Eina_Bool +E_API Eina_Bool e_acpi_lid_is_closed(void) { if (lid_is_closed == -1) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index e5a508c2c..5d7e421cd 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -3776,7 +3776,7 @@ e_comp_object_util_mirror_add(Evas_Object *obj) ////////////////////////////////////////////////////// -EAPI Eina_Bool +E_API Eina_Bool e_comp_object_effect_allowed_get(Evas_Object *obj) { API_ENTRY EINA_FALSE; diff --git a/src/bin/e_comp_object.h b/src/bin/e_comp_object.h index 7c9bbe0b2..2ed5189cd 100644 --- a/src/bin/e_comp_object.h +++ b/src/bin/e_comp_object.h @@ -77,7 +77,7 @@ E_API void e_comp_object_native_surface_override(Evas_Object *obj, Evas_Native_S E_API void e_comp_object_blank(Evas_Object *obj, Eina_Bool set); E_API void e_comp_object_dirty(Evas_Object *obj); E_API Eina_Bool e_comp_object_render(Evas_Object *obj); -EAPI Eina_Bool e_comp_object_effect_allowed_get(Evas_Object *obj); +E_API Eina_Bool e_comp_object_effect_allowed_get(Evas_Object *obj); E_API Eina_Bool e_comp_object_effect_set(Evas_Object *obj, const char *effect); E_API void e_comp_object_effect_params_set(Evas_Object *obj, int id, int *params, unsigned int count); E_API void e_comp_object_effect_clip(Evas_Object *obj); diff --git a/src/bin/e_comp_wl_input.c b/src/bin/e_comp_wl_input.c index e457aff30..932b0f8bb 100644 --- a/src/bin/e_comp_wl_input.c +++ b/src/bin/e_comp_wl_input.c @@ -3,7 +3,7 @@ #include "e.h" #include -EAPI int E_EVENT_TEXT_INPUT_PANEL_VISIBILITY_CHANGE = -1; +E_API int E_EVENT_TEXT_INPUT_PANEL_VISIBILITY_CHANGE = -1; static void _e_comp_wl_input_update_seat_caps(void) @@ -622,7 +622,7 @@ e_comp_wl_input_keymap_set(const char *rules, const char *model, const char *lay free((char *)names.layout); } -EAPI void +E_API void e_comp_wl_input_touch_enabled_set(Eina_Bool enabled) { /* check for valid compositor data */ diff --git a/src/bin/e_comp_wl_input.h b/src/bin/e_comp_wl_input.h index 15eef2fac..b3300c829 100644 --- a/src/bin/e_comp_wl_input.h +++ b/src/bin/e_comp_wl_input.h @@ -3,7 +3,7 @@ # ifndef E_COMP_WL_INPUT_H # define E_COMP_WL_INPUT_H -EAPI extern int E_EVENT_TEXT_INPUT_PANEL_VISIBILITY_CHANGE; +E_API extern int E_EVENT_TEXT_INPUT_PANEL_VISIBILITY_CHANGE; typedef struct _E_Event_Text_Input_Panel_Visibility_Change E_Event_Text_Input_Panel_Visibility_Change; diff --git a/src/modules/wl_text_input/e_mod_main.c b/src/modules/wl_text_input/e_mod_main.c index 67d0459e9..a31d81a3b 100644 --- a/src/modules/wl_text_input/e_mod_main.c +++ b/src/modules/wl_text_input/e_mod_main.c @@ -908,9 +908,9 @@ _e_text_cb_bind_input_method(struct wl_client *client, void *data EINA_UNUSED, u _e_text_input_cb_event_client_focus_in, input_method); } -EAPI E_Module_Api e_modapi = { E_MODULE_API_VERSION, "Wl_Text_Input" }; +E_API E_Module_Api e_modapi = { E_MODULE_API_VERSION, "Wl_Text_Input" }; -EAPI void * +E_API void * e_modapi_init(E_Module *m) { // FIXME: create only one input method object per seat. @@ -936,7 +936,7 @@ e_modapi_init(E_Module *m) return m; } -EAPI int +E_API int e_modapi_shutdown(E_Module *m EINA_UNUSED) { E_FREE_FUNC(e_comp->wl_comp_data->seat.im.global, wl_global_destroy);