summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorHermet Park <chuneon.park@samsung.com>2020-06-11 10:22:12 +0900
committerHermet Park <chuneon.park@samsung.com>2020-06-11 10:22:12 +0900
commit668e48fb47150d2d952421181d53952c75cb0cad (patch)
tree8d1b6d313328064da2333692834f18be126386b3 /doc
parented5255f51659445b50ee8b246f4ad4c51ca5f0f2 (diff)
parent4b223b9720244b605167c79acc957674ad0e4e71 (diff)
downloadefl-668e48fb47150d2d952421181d53952c75cb0cad.tar.gz
Merge branch 'master' into devs/hermet/lottie
Diffstat (limited to 'doc')
-rw-r--r--doc/eo_tutorial.dox4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/eo_tutorial.dox b/doc/eo_tutorial.dox
index baeb10d857..1cf0a2ee12 100644
--- a/doc/eo_tutorial.dox
+++ b/doc/eo_tutorial.dox
@@ -122,7 +122,7 @@
* - If the object is new, establish the public APIs
* - \#define \$(CLASS_NAME) \$(class_name)_class_get(): will be used to access data/inherit from this class...
* - const Eo_Class *\$(class_name)_class_get(void) EINA_CONST: declaration of the function that will create the class (not the instance), i.e virtual table...
- * - extern EAPI Eo_Op \$(CLASS_NAME)_BASE_ID: class id that will be essentially used to identify functions set of this class
+ * - EAPI extern Eo_Op \$(CLASS_NAME)_BASE_ID: class id that will be essentially used to identify functions set of this class
* - enum of the function ids of the class in the form \$(CLASS_NAME)_SUB_ID: used to identify the function inside the class; function id is unique per class but (class id, function id) is unique per system..
* - \#define \$(CLASS_NAME)_ID(sub_id) (\$(CLASS_NAME)_BASE_ID + sub_id): formula to calculate the system function id
* - define of each function consists of:
@@ -138,7 +138,7 @@
const Eo_Class *evas_object_line_class_get(void) EINA_CONST;
- extern EAPI Eo_Op EVAS_OBJ_LINE_BASE_ID;
+ EAPI extern Eo_Op EVAS_OBJ_LINE_BASE_ID;
enum
{