e_devicemgr: Move e_devicemgr_inputgen_key_event_add() to be public 70/311770/1 accepted/tizen/8.0/unified/20240528.160808
authorduna.oh <duna.oh@samsung.com>
Mon, 27 May 2024 09:35:14 +0000 (18:35 +0900)
committerduna.oh <duna.oh@samsung.com>
Mon, 27 May 2024 10:06:23 +0000 (19:06 +0900)
Ths function could be used in server module, so it should not be marked as internal.

Refer to the following commit.

commit 9611fff8ebbbe3fbaf2fcc97b2f23c2590baa77e
Author: SooChan Lim <sc1.lim@samsung.com>
Date:   Thu Jun 1 13:32:17 2023 +0900

    e_devicemgr: change E_API to EINTERN

Change-Id: If0a1d8b6b5d406cdeae892e6d774354046fbfbc5

src/bin/e_devicemgr.h
src/bin/e_devicemgr_inputgen.c

index 42a3b474f06e9a3f35f4bf445cd17adb208eb954..bc63876b93f6b0c34796103235d8d16396f712ac 100644 (file)
@@ -109,7 +109,7 @@ EINTERN E_Devicemgr_Intercept_Hook *e_devicemgr_intercept_hook_add(E_Devicemgr_I
 EINTERN void e_devicemgr_intercept_hook_del(E_Devicemgr_Intercept_Hook *ch);
 EINTERN Eina_Bool e_devicemgr_intercept_hook_call(E_Devicemgr_Intercept_Hook_Point hookpoint, void *event);
 E_API Eina_Bool e_devicemgr_is_blocking_event(Ecore_Device_Class clas);
-EINTERN int e_devicemgr_inputgen_key_event_add(const char *key, Eina_Bool pressed, char *identifier);
+E_API int e_devicemgr_inputgen_key_event_add(const char *key, Eina_Bool pressed, char *identifier);
 
 EINTERN int e_devicemgr_init(void);
 EINTERN int e_devicemgr_shutdown(void);
index 4acac267e3e573a15c18b4ce940fe27fb6523f72..589d4a9d29baeddb22ffc87c7f48e045ac7a4066 100644 (file)
@@ -91,7 +91,7 @@ _e_devicemgr_inputgen_key_event_free(void *data EINA_UNUSED, void *ev)
    free(e);
 }
 
-EINTERN int
+E_API int
 e_devicemgr_inputgen_key_event_add(const char *key, Eina_Bool pressed, char *identifier)
 {
    Ecore_Event_Key *e;