summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorVincent Torri <vincent.torri@gmail.com>2020-06-10 05:07:47 +0000
committerStefan Schmidt <s.schmidt@samsung.com>2020-06-10 10:07:57 +0200
commitcfbdcdc9c81c5cd14d8dc9f1db4d102d8052b473 (patch)
treeee25a2fccce251cee86fd009ea353155aacfe270 /doc
parent13cb31e2715b324d8b75f7d0458398b59d609fb6 (diff)
downloadefl-cfbdcdc9c81c5cd14d8dc9f1db4d102d8052b473.tar.gz
Use extern after EAPI
Reviewed-by: Stefan Schmidt <stefan@datenfreihafen.org> Differential Revision: https://phab.enlightenment.org/D11961
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
{