diff options
-rw-r--r-- | src/lib/ecore_imf/Ecore_IMF.h | 13 | ||||
-rw-r--r-- | src/lib/ecore_imf/ecore_imf.c | 20 |
2 files changed, 13 insertions, 20 deletions
diff --git a/src/lib/ecore_imf/Ecore_IMF.h b/src/lib/ecore_imf/Ecore_IMF.h index e90b6b4b25..be24897d29 100644 --- a/src/lib/ecore_imf/Ecore_IMF.h +++ b/src/lib/ecore_imf/Ecore_IMF.h | |||
@@ -511,7 +511,20 @@ struct _Ecore_IMF_Context_Info | |||
511 | * @} | 511 | * @} |
512 | */ | 512 | */ |
513 | 513 | ||
514 | /** | ||
515 | * Initialises the Ecore_IMF library. | ||
516 | * @return Number of times the library has been initialised without being | ||
517 | * shut down. | ||
518 | * @ingroup Ecore_IMF_Lib_Group | ||
519 | */ | ||
514 | EAPI int ecore_imf_init(void); | 520 | EAPI int ecore_imf_init(void); |
521 | |||
522 | /** | ||
523 | * Shuts down the Ecore_IMF library. | ||
524 | * @return Number of times the library has been initialised without being | ||
525 | * shut down. | ||
526 | * @ingroup Ecore_IMF_Lib_Group | ||
527 | */ | ||
515 | EAPI int ecore_imf_shutdown(void); | 528 | EAPI int ecore_imf_shutdown(void); |
516 | 529 | ||
517 | EAPI void ecore_imf_module_register(const Ecore_IMF_Context_Info *info, Ecore_IMF_Context *(*imf_module_create)(void), Ecore_IMF_Context *(*imf_module_exit)(void)); | 530 | EAPI void ecore_imf_module_register(const Ecore_IMF_Context_Info *info, Ecore_IMF_Context *(*imf_module_create)(void), Ecore_IMF_Context *(*imf_module_exit)(void)); |
diff --git a/src/lib/ecore_imf/ecore_imf.c b/src/lib/ecore_imf/ecore_imf.c index c5f12910ca..143acc4e83 100644 --- a/src/lib/ecore_imf/ecore_imf.c +++ b/src/lib/ecore_imf/ecore_imf.c | |||
@@ -17,20 +17,6 @@ EAPI int ECORE_IMF_EVENT_DELETE_SURROUNDING = 0; | |||
17 | int _ecore_imf_log_dom = -1; | 17 | int _ecore_imf_log_dom = -1; |
18 | static int _ecore_imf_init_count = 0; | 18 | static int _ecore_imf_init_count = 0; |
19 | 19 | ||
20 | /** | ||
21 | * @defgroup Ecore_IMF_Lib_Group Ecore_IMF - Ecore Input Method Library Functions | ||
22 | * @ingroup Ecore | ||
23 | * | ||
24 | * Utility functions that set up and shut down the Ecore Input Method | ||
25 | * library. | ||
26 | */ | ||
27 | |||
28 | /** | ||
29 | * Initialises the Ecore_IMF library. | ||
30 | * @return Number of times the library has been initialised without being | ||
31 | * shut down. | ||
32 | * @ingroup Ecore_IMF_Lib_Group | ||
33 | */ | ||
34 | EAPI int | 20 | EAPI int |
35 | ecore_imf_init(void) | 21 | ecore_imf_init(void) |
36 | { | 22 | { |
@@ -56,12 +42,6 @@ ecore_imf_init(void) | |||
56 | return _ecore_imf_init_count; | 42 | return _ecore_imf_init_count; |
57 | } | 43 | } |
58 | 44 | ||
59 | /** | ||
60 | * Shuts down the Ecore_IMF library. | ||
61 | * @return Number of times the library has been initialised without being | ||
62 | * shut down. | ||
63 | * @ingroup Ecore_IMF_Lib_Group | ||
64 | */ | ||
65 | EAPI int | 45 | EAPI int |
66 | ecore_imf_shutdown(void) | 46 | ecore_imf_shutdown(void) |
67 | { | 47 | { |