e_hints: change EINTERN to E_API 28/293628/1
authorSooChan Lim <sc1.lim@samsung.com>
Thu, 1 Jun 2023 06:49:32 +0000 (15:49 +0900)
committerTizen Window System <tizen.windowsystem@gmail.com>
Thu, 1 Jun 2023 07:38:18 +0000 (16:38 +0900)
Change-Id: I39441879ce7bd73c7b8731d1e3845125401db4ad

src/bin/e_hints.c
src/bin/e_hints.h

index ad9f667..8f99892 100644 (file)
@@ -76,8 +76,8 @@ _e_hints_aux_hint_add_with_pixmap(E_Pixmap *cp, int32_t id, const char *name, co
    return EINA_TRUE;
 }
 
-static Eina_Bool
-_e_hints_aux_hint_change_with_pixmap(E_Pixmap *cp, int32_t id, const char *val)
+E_API Eina_Bool
+e_hints_aux_hint_change_with_pixmap(E_Pixmap *cp, int32_t id, const char *val)
 {
    E_Comp_Wl_Client_Data *cdata;
    Eina_List *l;
@@ -240,7 +240,7 @@ EINTERN Eina_Bool
 e_hints_aux_hint_change(E_Client *ec, int32_t id, const char *val)
 {
    if (!ec) return EINA_FALSE;
-   return _e_hints_aux_hint_change_with_pixmap(ec->pixmap, id, val);
+   return e_hints_aux_hint_change_with_pixmap(ec->pixmap, id, val);
 }
 
 E_API Eina_Bool
index 3e62578..ca76053 100644 (file)
@@ -15,6 +15,7 @@ E_API Eina_Bool e_hints_aux_hint_add(E_Client *ec, int32_t id, const char *name,
 EINTERN Eina_Bool e_hints_aux_hint_change(E_Client *ec, int32_t id, const char *val);
 E_API Eina_Bool e_hints_aux_hint_del(E_Client *ec, int32_t id);
 E_API const char * e_hints_aux_hint_value_get(E_Client *ec, const char *name);
+E_API Eina_Bool e_hints_aux_hint_change_with_pixmap(E_Pixmap *cp, int32_t id, const char *val);
 
 #endif
 #endif