efl/ecore_imf: move docs to header about ecore_imf_{init, shutdown}
authorJihoon Kim <imfine98@gmail.com>
Tue, 8 Jan 2013 03:56:09 +0000 (03:56 +0000)
committerJihoon Kim <imfine98@gmail.com>
Tue, 8 Jan 2013 03:56:09 +0000 (03:56 +0000)
SVN revision: 82380

src/lib/ecore_imf/Ecore_IMF.h
src/lib/ecore_imf/ecore_imf.c

index e90b6b4..be24897 100644 (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);
+
+/**
+ * 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 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));
index c5f1291..143acc4 100644 (file)
@@ -17,20 +17,6 @@ EAPI int ECORE_IMF_EVENT_DELETE_SURROUNDING = 0;
 int _ecore_imf_log_dom = -1;
 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
 ecore_imf_init(void)
 {
@@ -56,12 +42,6 @@ ecore_imf_init(void)
    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
 ecore_imf_shutdown(void)
 {