e_uuid_store: make an internal header 41/304941/1
authorSooChan Lim <sc1.lim@samsung.com>
Fri, 12 Jan 2024 08:59:31 +0000 (17:59 +0900)
committerTizen Window System <tizen.windowsystem@gmail.com>
Fri, 26 Jan 2024 00:59:16 +0000 (09:59 +0900)
Move the internal resources and the function declaration
to the internal header.

Change-Id: I293bc0eee7d38c93ac792d700b57fd15605e51e7

src/bin/Makefile.mk
src/bin/e_client.c
src/bin/e_includes.h
src/bin/e_uuid_store.c
src/bin/e_uuid_store_intern.h [moved from src/bin/e_uuid_store.h with 94% similarity]

index 2c1e24e..ce097d0 100644 (file)
@@ -76,7 +76,6 @@ src/bin/e_zone.h \
 src/bin/e_util_transform.h \
 src/bin/e_comp_screen.h \
 src/bin/e_info_protocol.h \
-src/bin/e_uuid_store.h \
 src/bin/e_comp_wl_data.h \
 src/bin/e_comp_wl_input.h \
 src/bin/e_comp_wl.h \
index d5fb60e..1d77600 100644 (file)
@@ -3,6 +3,7 @@
 #include "e_actions_intern.h"
 #include "e_appinfo_intern.h"
 #include "e_bindings_intern.h"
+#include "e_uuid_store_intern.h"
 
 #define PRI(ec) ((E_Client_Private *)e_object_data_get(E_OBJECT(ec)))
 
index 3bdc1d3..8f5ac42 100644 (file)
@@ -54,7 +54,6 @@
 #include "e_comp_wl_subsurface.h"
 #include "e_comp_wl_data.h"
 #include "e_comp_wl_input.h"
-#include "e_uuid_store.h"
 #include "e_comp_wl_tbm.h"
 #include "e_comp_wl_rsm.h"
 #include "e_comp_wl_screenshooter.h"
index 77ec58b..49c5c5b 100644 (file)
@@ -6,6 +6,9 @@
  * 3. (optional) Write the whole blob into a file on disk for later use)
  */
 
+#include "e.h"
+#include "e_uuid_store_intern.h"
+
 #include <sys/types.h>
 #include <sys/mman.h>
 #include <fcntl.h>
@@ -13,8 +16,6 @@
 
 #include <Eina.h>
 
-#include <e.h>
-
 /* Use anonymous mapping if we don't want a persistent file on the disk */
 #define OBJECT_NAME "/e_uuid_store"
 #define TABLE_SIZE 10*eina_cpu_page_size()
similarity index 94%
rename from src/bin/e_uuid_store.h
rename to src/bin/e_uuid_store_intern.h
index 74e565f..9e6afc9 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef E_UUID_STORE_H
-#define E_UUID_STORE_H
+#ifndef E_UUID_STORE_INTERN_H
+#define E_UUID_STORE_INTERN_H
 
 /* vim:ts=8 sw=3 sts=3 expandtab cino=>5n-3f0^-2{2(0W1st0
  */