e_comp_wl: change all E_API to EINTERN 28/293528/2
authorSooChan Lim <sc1.lim@samsung.com>
Thu, 18 May 2023 06:49:02 +0000 (15:49 +0900)
committerSooChan Lim <sc1.lim@samsung.com>
Wed, 31 May 2023 06:43:19 +0000 (06:43 +0000)
Change-Id: Ibb0ce8f3de8a799c374892a04c529297d009239a

src/bin/e_comp_wl.c
src/bin/e_comp_wl.h

index 97744446ad94455d4e73f0f388a985bd0e40c70b..9ff1fdb17597f428eba41de98c084e580df3beb8 100644 (file)
@@ -4593,7 +4593,7 @@ e_comp_wl_surface_attach(E_Client *ec, E_Comp_Wl_Buffer *buffer)
                    (Ecore_End_Cb)e_comp_wl_surface_event_simple_free, NULL);
 }
 
-E_API Eina_Bool
+EINTERN Eina_Bool
 e_comp_wl_surface_commit(E_Client *ec)
 {
    Eina_Bool ignored;
@@ -4949,7 +4949,7 @@ _e_comp_wl_output_get(Eina_List *outputs, const char *id)
  *
  * @returns True if a display output object could be added or updated
  */
-E_API Eina_Bool
+EINTERN Eina_Bool
 e_comp_wl_output_init(const char *id, const char *make, const char *model,
                       int x, int y, int w, int h, int pw, int ph,
                       unsigned int refresh, unsigned int subpixel,
@@ -5023,7 +5023,7 @@ e_comp_wl_output_init(const char *id, const char *make, const char *model,
    return EINA_TRUE;
 }
 
-E_API void
+EINTERN void
 e_comp_wl_output_remove(const char *id)
 {
    E_Comp_Wl_Output *output;
@@ -5561,7 +5561,7 @@ e_comp_wl_touch_update_send(E_Client *ec, int idx, int x, int y, Ecore_Device *d
    return EINA_TRUE;
 }
 
-EINTERN Eina_Bool
+E_API Eina_Bool
 e_comp_wl_touch_cancel_send(E_Client *ec)
 {
    EINA_SAFETY_ON_NULL_RETURN_VAL(ec, EINA_FALSE);
index 281bf8142f922c923c0a483a3ee6001a533241b0..326a3eb4c14d50c2e4d5f664d58f6cfb04c2d1e4 100644 (file)
@@ -557,12 +557,12 @@ EINTERN void e_comp_wl_deferred_job(void);
 
 EINTERN void e_comp_wl_surface_destroy(struct wl_resource *resource);
 EINTERN void e_comp_wl_surface_attach(E_Client *ec, E_Comp_Wl_Buffer *buffer);
-E_API Eina_Bool e_comp_wl_surface_commit(E_Client *ec);
+EINTERN Eina_Bool e_comp_wl_surface_commit(E_Client *ec);
 E_API void e_comp_wl_buffer_reference(E_Comp_Wl_Buffer_Ref *ref, E_Comp_Wl_Buffer *buffer);
 EINTERN E_Comp_Wl_Buffer *e_comp_wl_buffer_get(struct wl_resource *resource, E_Client *ec);
 
-E_API Eina_Bool e_comp_wl_output_init(const char *id, const char *make, const char *model, int x, int y, int w, int h, int pw, int ph, unsigned int refresh, unsigned int subpixel, unsigned int transform);
-E_API void e_comp_wl_output_remove(const char *id);
+EINTERN Eina_Bool e_comp_wl_output_init(const char *id, const char *make, const char *model, int x, int y, int w, int h, int pw, int ph, unsigned int refresh, unsigned int subpixel, unsigned int transform);
+EINTERN void e_comp_wl_output_remove(const char *id);
 
 EINTERN Eina_Bool e_comp_wl_key_down(Ecore_Event_Key *ev);
 EINTERN Eina_Bool e_comp_wl_key_up(Ecore_Event_Key *ev);