docs: Fix errors in Ecore/Eina that makes wrong API reference documentation 19/250819/1
authorMyoungwoon Roy, Kim <myoungwoon.kim@samsung.com>
Tue, 5 Jan 2021 04:22:45 +0000 (13:22 +0900)
committerMyoungwoon Roy, Kim <myoungwoon.kim@samsung.com>
Tue, 5 Jan 2021 04:22:45 +0000 (13:22 +0900)
Change-Id: I79487ece77271b0a06199541959d540fd83ca776

src/lib/ecore/Ecore_Common.h
src/lib/eina/eina_prefix.h

index 65d5a37..d45ff8b 100644 (file)
@@ -1027,10 +1027,14 @@ EAPI void ecore_power_state_set(Ecore_Power_State state);
 /** Inherit priority from parent process */
 #define ECORE_EXE_PRIORITY_INHERIT 9999
 
-EAPI extern int ECORE_EXE_EVENT_ADD; /**< A child process has been added */
-EAPI extern int ECORE_EXE_EVENT_DEL; /**< A child process has been deleted (it exited, naming consistent with the rest of ecore). */
-EAPI extern int ECORE_EXE_EVENT_DATA; /**< Data from a child process. */
-EAPI extern int ECORE_EXE_EVENT_ERROR; /**< Errors from a child process. */
+/** A child process has been added */
+EAPI extern int ECORE_EXE_EVENT_ADD;
+/** A child process has been deleted (it exited, naming consistent with the rest of ecore). */
+EAPI extern int ECORE_EXE_EVENT_DEL;
+/** Data from a child process. */
+EAPI extern int ECORE_EXE_EVENT_DATA;
+/** Errors from a child process. */
+EAPI extern int ECORE_EXE_EVENT_ERROR;
 
 
 /**
index 549f462..501c226 100644 (file)
@@ -108,13 +108,14 @@ typedef struct _Eina_Prefix Eina_Prefix;
  *       be lib32 or lib64 instead of lib, and so on.
  *
  * Compile the following defining at compile time your prefixes like (example):
- *
+ * @code
  * gcc appname.c -o appname
- * -DPACKAGE_BIN_DIR=\\"/usr/local/bin\"
- * -DPACKAGE_LIB_DIR=\\"/usr/local/lib\"
- * -DPACKAGE_DATA_DIR=\\"/usr/local/share/appname\"
- * -DLOCALE_DIR=\\"/usr/local/share/locale\"
+ * -DPACKAGE_BIN_DIR=\"/usr/local/bin\"
+ * -DPACKAGE_LIB_DIR=\"/usr/local/lib\"
+ * -DPACKAGE_DATA_DIR=\"/usr/local/share/appname\"
+ * -DLOCALE_DIR=\"/usr/local/share/locale\"
  * `pkg-config --cflags --libs eina`
+ * @endcode
  *
  * (of course add appropriate compile flags to linking and note that
  * locale dir is optional. If you don't need it, provide data dir as the