e_keyrouter: move structure to c file 37/321737/1
authorSooChan Lim <sc1.lim@samsung.com>
Thu, 27 Mar 2025 00:03:55 +0000 (09:03 +0900)
committerTizen Window System <tizen.windowsystem@gmail.com>
Thu, 27 Mar 2025 10:03:35 +0000 (19:03 +0900)
Change-Id: I906e75534bca8a1a46ab6ebd75f09d5b41b8a7b8

src/bin/inputmgr/e_keyrouter.c
src/bin/inputmgr/e_keyrouter_intern.h

index 56477c4d02ab89da4078ac3139c7e31f2df20559..1114eee660e2ef6ea371ee4bf1cd962dba56f54d 100644 (file)
 #include <tizen-extension-server-protocol.h>
 #include <glib.h>
 
+struct _E_Keyrouter_Intercept_Hook
+{
+   EINA_INLIST;
+   E_Keyrouter_Intercept_Hook_Point hookpoint;
+   E_Keyrouter_Intercept_Hook_Cb func;
+   void *data;
+   unsigned char delete_me : 1;
+};
+
 static int _e_keyrouter_intercept_hooks_delete = 0;
 static int _e_keyrouter_intercept_hooks_walking = 0;
 
index 9b25a1b229fc995155b247640d924249fd6257c0..59a8266e107273dd3f971c0a89877d8418662c84 100644 (file)
@@ -56,15 +56,6 @@ struct _E_Keyrouter
    GRecMutex grab_key_mutex;
 };
 
-struct _E_Keyrouter_Intercept_Hook
-{
-   EINA_INLIST;
-   E_Keyrouter_Intercept_Hook_Point hookpoint;
-   E_Keyrouter_Intercept_Hook_Cb func;
-   void *data;
-   unsigned char delete_me : 1;
-};
-
 extern EINTERN E_Keyrouter *krt;
 
 EINTERN int e_keyrouter_init(void);