e_uuid_store: change E_API to EINTERN 25/293725/1
authorSooChan Lim <sc1.lim@samsung.com>
Fri, 2 Jun 2023 02:42:34 +0000 (11:42 +0900)
committerTizen Window System <tizen.windowsystem@gmail.com>
Fri, 2 Jun 2023 06:45:08 +0000 (15:45 +0900)
Change-Id: I8b35c1a6137a5ab122ccbc76cd16e6103933adc3

src/bin/e_uuid_store.c
src/bin/e_uuid_store.h

index c21534c..77ec58b 100644 (file)
@@ -21,7 +21,7 @@
 
 struct uuid_store *store;
 
-void
+EINTERN void
 e_uuid_dump(void)
  {
    struct uuid_table *table;
@@ -114,7 +114,7 @@ e_uuid_store_shutdown(void)
    return 1;
  }
 
-Eina_Bool
+EINTERN Eina_Bool
 e_uuid_store_reload(void)
  {
    /* After crash reload the table with its POSIX object name from memory */
@@ -127,7 +127,7 @@ e_uuid_store_reload(void)
    return EINA_TRUE;
  }
 
-Eina_Bool
+EINTERN Eina_Bool
 e_uuid_store_entry_del(uuid_t uuid)
  {
    struct uuid_table *table;
@@ -162,7 +162,7 @@ e_uuid_store_entry_del(uuid_t uuid)
 
 /* FIXME: Think about having _add  and _update functions instead only update */
 
-Eina_Bool
+EINTERN Eina_Bool
 e_uuid_store_entry_update(uuid_t uuid, E_Client *ec)
  {
    struct uuid_table *table;
index 855c57d..74e565f 100644 (file)
@@ -29,8 +29,9 @@ struct uuid_store {
 
 EINTERN int e_uuid_store_init(void);
 EINTERN int e_uuid_store_shutdown(void);
-E_API void e_uuid_dump(void);
-E_API Eina_Bool e_uuid_store_reload(void);
-E_API Eina_Bool e_uuid_store_entry_del(uuid_t uuid);
-E_API Eina_Bool e_uuid_store_entry_update(uuid_t uuid, E_Client *ec);
+EINTERN void e_uuid_dump(void);
+EINTERN Eina_Bool e_uuid_store_reload(void);
+EINTERN Eina_Bool e_uuid_store_entry_del(uuid_t uuid);
+EINTERN Eina_Bool e_uuid_store_entry_update(uuid_t uuid, E_Client *ec);
+
 #endif