efl/ecore_imf: move docs to header about ecore_imf_{init, shutdown}

SVN revision: 82380
This commit is contained in:
Jihoon Kim 2013-01-08 03:56:09 +00:00
parent abeb2f2f64
commit 7cb5f0f921
2 changed files with 13 additions and 20 deletions

View File

@ -511,7 +511,20 @@ struct _Ecore_IMF_Context_Info
* @} * @}
*/ */
/**
* Initialises the Ecore_IMF library.
* @return Number of times the library has been initialised without being
* shut down.
* @ingroup Ecore_IMF_Lib_Group
*/
EAPI int ecore_imf_init(void); EAPI int ecore_imf_init(void);
/**
* Shuts down the Ecore_IMF library.
* @return Number of times the library has been initialised without being
* shut down.
* @ingroup Ecore_IMF_Lib_Group
*/
EAPI int ecore_imf_shutdown(void); EAPI int ecore_imf_shutdown(void);
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)); 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));

View File

@ -17,20 +17,6 @@ EAPI int ECORE_IMF_EVENT_DELETE_SURROUNDING = 0;
int _ecore_imf_log_dom = -1; int _ecore_imf_log_dom = -1;
static int _ecore_imf_init_count = 0; static int _ecore_imf_init_count = 0;
/**
* @defgroup Ecore_IMF_Lib_Group Ecore_IMF - Ecore Input Method Library Functions
* @ingroup Ecore
*
* Utility functions that set up and shut down the Ecore Input Method
* library.
*/
/**
* Initialises the Ecore_IMF library.
* @return Number of times the library has been initialised without being
* shut down.
* @ingroup Ecore_IMF_Lib_Group
*/
EAPI int EAPI int
ecore_imf_init(void) ecore_imf_init(void)
{ {
@ -56,12 +42,6 @@ ecore_imf_init(void)
return _ecore_imf_init_count; return _ecore_imf_init_count;
} }
/**
* Shuts down the Ecore_IMF library.
* @return Number of times the library has been initialised without being
* shut down.
* @ingroup Ecore_IMF_Lib_Group
*/
EAPI int EAPI int
ecore_imf_shutdown(void) ecore_imf_shutdown(void)
{ {