e_wtz_shell: make an internal header 40/304940/1
authorSooChan Lim <sc1.lim@samsung.com>
Fri, 12 Jan 2024 08:41:26 +0000 (17:41 +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: Id03da69b9f754f5ca1785423af62cf5c9fe461f2

src/bin/Makefile.mk
src/bin/e_comp_wl.c
src/bin/e_wtz_shell.h [deleted file]
src/bin/e_wtz_shell_intern.h [new file with mode: 0644]

index 4d92c2a09f101e8d8c7f63932a51829745962bf3..2c1e24e489ca6739c0d9ff18202f809f7842303a 100644 (file)
@@ -138,7 +138,6 @@ src/bin/e_msg.h     \
 src/bin/e_foreign.h \
 src/bin/e_foreign_private.h \
 src/bin/e_map.h \
-src/bin/e_wtz_shell.h \
 src/bin/e_device.h \
 src/bin/e_input_event.h
 
index caef2ad530d3d47cb2631fd52e471a364fda4fb3..2a1feba44ef9be9dad9440f681378d7c75976a09 100644 (file)
@@ -1,6 +1,6 @@
 #include "e.h"
 #include "e_foreign.h"
-#include "e_wtz_shell.h"
+#include "e_wtz_shell_intern.h"
 #include "e_comp_wl_private.h"
 #include "e_client_intern.h"
 #include "e_appinfo_intern.h"
diff --git a/src/bin/e_wtz_shell.h b/src/bin/e_wtz_shell.h
deleted file mode 100644 (file)
index ab8d258..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#ifdef E_TYPEDEFS
-#else
-# ifndef E_WTZ_SHELL_V6_H
-#  define E_WTZ_SHELL_V6_H
-
-EINTERN Eina_Bool e_wtz_shell_init(void);
-EINTERN void      e_wtz_shell_shutdown(void);
-
-# endif
-#endif
diff --git a/src/bin/e_wtz_shell_intern.h b/src/bin/e_wtz_shell_intern.h
new file mode 100644 (file)
index 0000000..145fb67
--- /dev/null
@@ -0,0 +1,7 @@
+#ifndef E_WTZ_SHELL_INTERN_H
+#define E_WTZ_SHELL_INTERN_H
+
+EINTERN Eina_Bool e_wtz_shell_init(void);
+EINTERN void      e_wtz_shell_shutdown(void);
+
+#endif