From ff14022ae871b2467475b6d70b45dab50faa845f Mon Sep 17 00:00:00 2001 From: SooChan Lim Date: Thu, 1 Jun 2023 14:22:27 +0900 Subject: [PATCH] change EINTERN to E_API Change-Id: I6fd0b65d5d833c642132b13153eb9f175b36ab9a --- src/bin/e_comp_object.c | 12 ++++++------ src/bin/e_comp_object.h | 12 ++++++------ src/bin/e_comp_wl_rsm.c | 2 +- src/bin/e_comp_wl_rsm.h | 2 +- src/bin/e_pixmap.c | 2 +- src/bin/e_pixmap.h | 2 +- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 44c21d2..539f23d 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -3834,7 +3834,7 @@ e_comp_object_client_add(E_Client *ec) } /* utility functions for getting client inset */ -EINTERN void +E_API void e_comp_object_frame_xy_adjust(Evas_Object *obj, int x, int y, int *ax, int *ay) { API_ENTRY; @@ -4874,7 +4874,7 @@ _e_comp_object_damage_trace_rect_set(Evas_Object *obj, Eina_Rectangle *origin, i } /* mark an object as dirty and setup damages */ -EINTERN void +E_API void e_comp_object_dirty(Evas_Object *obj) { Eina_Iterator *it; @@ -4974,7 +4974,7 @@ e_comp_object_dirty(Evas_Object *obj) e_comp_object_render(obj); } -EINTERN Eina_Bool +E_API Eina_Bool e_comp_object_render(Evas_Object *obj) { Eina_List *l; @@ -5376,7 +5376,7 @@ e_comp_object_effect_object_get(Evas_Object *obj) return cw->effect_obj; } -EINTERN Eina_Bool +E_API Eina_Bool e_comp_object_effect_hiding_set(Evas_Object *obj, Eina_Bool set) { API_ENTRY EINA_FALSE; @@ -6161,7 +6161,7 @@ e_comp_object_hwc_update_set(Evas_Object *obj, Eina_Bool set) cw->hwc_need_update = set; } -EINTERN Eina_Bool +E_API Eina_Bool e_comp_object_effect_object_part_swallow(Evas_Object *obj, const char *part_name, Evas_Object *swallow_obj) { API_ENTRY EINA_FALSE; @@ -6304,7 +6304,7 @@ e_comp_object_render_trace_set(Evas_Object *obj, Eina_Bool set) return EINA_TRUE; } -EINTERN Eina_Bool +E_API Eina_Bool e_comp_object_native_usable_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 58ac260..14d6fbd 100644 --- a/src/bin/e_comp_object.h +++ b/src/bin/e_comp_object.h @@ -93,7 +93,7 @@ EINTERN Eina_Bool e_comp_object_mirror_visibility_check(Evas_Object *obj); EINTERN Evas_Object *e_comp_object_client_add(E_Client *ec); EINTERN Evas_Object *e_comp_object_util_mirror_add(Evas_Object *obj); EINTERN Evas_Object *e_comp_object_util_add(Evas_Object *obj); -EINTERN void e_comp_object_frame_xy_adjust(Evas_Object *obj, int x, int y, int *ax, int *ay); +E_API void e_comp_object_frame_xy_adjust(Evas_Object *obj, int x, int y, int *ax, int *ay); E_API void e_comp_object_frame_xy_unadjust(Evas_Object *obj, int x, int y, int *ax, int *ay); EINTERN void e_comp_object_frame_wh_adjust(Evas_Object *obj, int w, int h, int *aw, int *ah); E_API void e_comp_object_frame_wh_unadjust(Evas_Object *obj, int w, int h, int *aw, int *ah); @@ -129,8 +129,8 @@ EINTERN void e_comp_object_redirected_set(Evas_Object *obj, Eina_Bool set); EINTERN void e_comp_object_native_surface_set(Evas_Object *obj, Eina_Bool set); EINTERN void e_comp_object_native_surface_override(Evas_Object *obj, Evas_Native_Surface *ns); EINTERN void e_comp_object_blank(Evas_Object *obj, Eina_Bool set); -EINTERN void e_comp_object_dirty(Evas_Object *obj); -EINTERN Eina_Bool e_comp_object_render(Evas_Object *obj); +E_API void e_comp_object_dirty(Evas_Object *obj); +E_API Eina_Bool e_comp_object_render(Evas_Object *obj); EINTERN 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); @@ -180,8 +180,8 @@ EINTERN void e_comp_object_clear(Evas_Object *obj); EINTERN Eina_Bool e_comp_object_hwc_update_exists(Evas_Object *obj); E_API void e_comp_object_hwc_update_set(Evas_Object *obj, Eina_Bool set); -EINTERN Eina_Bool e_comp_object_effect_object_part_swallow(Evas_Object *obj, const char *part_name, Evas_Object *swallow_obj); -EINTERN Eina_Bool e_comp_object_effect_hiding_set(Evas_Object *obj, Eina_Bool set); +E_API Eina_Bool e_comp_object_effect_object_part_swallow(Evas_Object *obj, const char *part_name, Evas_Object *swallow_obj); +E_API Eina_Bool e_comp_object_effect_hiding_set(Evas_Object *obj, Eina_Bool set); EINTERN void e_comp_object_indicator_swallow(Evas_Object *obj, Evas_Object *indicator); EINTERN void e_comp_object_indicator_unswallow(Evas_Object *obj, Evas_Object *indicator); @@ -191,7 +191,7 @@ EINTERN void e_comp_object_map_update(Evas_Object *obj); EINTERN Eina_Bool e_comp_object_render_trace_set(Evas_Object *obj, Eina_Bool set); -EINTERN Eina_Bool e_comp_object_native_usable_get(Evas_Object *obj); +E_API Eina_Bool e_comp_object_native_usable_get(Evas_Object *obj); EINTERN Eina_Bool e_comp_object_image_filter_set(Evas_Object *obj, E_Comp_Image_Filter filter); EINTERN E_Comp_Image_Filter e_comp_object_image_filter_get(Evas_Object *obj); diff --git a/src/bin/e_comp_wl_rsm.c b/src/bin/e_comp_wl_rsm.c index f562a38..4547c9a 100644 --- a/src/bin/e_comp_wl_rsm.c +++ b/src/bin/e_comp_wl_rsm.c @@ -3541,7 +3541,7 @@ e_comp_wl_remote_surface_debug_info_get(Eldbus_Message_Iter *iter) * Get a list of e_clients of tizen remote surface providers which is used in given ec * NB: caller must free returned Eina_List object after using it. */ -EINTERN Eina_List * +E_API Eina_List * e_comp_wl_remote_surface_providers_get(E_Client *ec) { E_Comp_Wl_Remote_Provider *prov; diff --git a/src/bin/e_comp_wl_rsm.h b/src/bin/e_comp_wl_rsm.h index c722bcf..3e22252 100644 --- a/src/bin/e_comp_wl_rsm.h +++ b/src/bin/e_comp_wl_rsm.h @@ -18,7 +18,7 @@ EINTERN E_Client *e_comp_wl_remote_surface_bound_provider_ec_get(E_Client *ec); * Get a list of e_clients of tizen remote surface providers which is used in given ec * NB: caller must free returned Eina_List object after using it. */ -EINTERN Eina_List *e_comp_wl_remote_surface_providers_get(E_Client *ec); +E_API Eina_List *e_comp_wl_remote_surface_providers_get(E_Client *ec); /** * Get a list of e_clients of tizen remote surface consumers which use given ec diff --git a/src/bin/e_pixmap.c b/src/bin/e_pixmap.c index 6fefc0e..675740e 100644 --- a/src/bin/e_pixmap.c +++ b/src/bin/e_pixmap.c @@ -588,7 +588,7 @@ e_pixmap_res_id_get(E_Pixmap *cp) return cp->res_id; } -EINTERN uint64_t +E_API uint64_t e_pixmap_window_get(E_Pixmap *cp) { EINA_SAFETY_ON_NULL_RETURN_VAL(cp, 0); diff --git a/src/bin/e_pixmap.h b/src/bin/e_pixmap.h index 11d729c..2afbd09 100644 --- a/src/bin/e_pixmap.h +++ b/src/bin/e_pixmap.h @@ -60,7 +60,7 @@ EINTERN E_Pixmap *e_pixmap_find(E_Pixmap_Type type, ...); EINTERN E_Client *e_pixmap_find_client(E_Pixmap_Type type, ...); E_API E_Client *e_pixmap_find_client_by_res_id(uint32_t res_id); E_API uint32_t e_pixmap_res_id_get(E_Pixmap *cp); -EINTERN uint64_t e_pixmap_window_get(E_Pixmap *cp); +E_API uint64_t e_pixmap_window_get(E_Pixmap *cp); EINTERN Ecore_Window e_pixmap_parent_window_get(E_Pixmap *cp); E_API Eina_Bool e_pixmap_native_surface_init(E_Pixmap *cp, Evas_Native_Surface *ns); E_API void e_pixmap_image_clear(E_Pixmap *cp, Eina_Bool cache); -- 2.7.4