summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2013-09-06 00:24:00 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2013-09-06 00:28:04 +0200
commit34f50df4c1c44f87b3d1f2cada731a312d11a8e9 (patch)
tree1d7c0b81d6621bd27375fb63fd56dce8bccf40bb
parent1b94248907c08eca8f47d54f49e50aeec1d75af9 (diff)
downloadefl-34f50df4c1c44f87b3d1f2cada731a312d11a8e9.tar.gz
Eo_Id is a uintptr_t as Eo_Class_Id is
-rw-r--r--src/lib/eo/eo_private.h20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/lib/eo/eo_private.h b/src/lib/eo/eo_private.h
index bfa3c150f4..d347bc0061 100644
--- a/src/lib/eo/eo_private.h
+++ b/src/lib/eo/eo_private.h
@@ -54,7 +54,18 @@ extern int _eo_log_dom;
#endif
#define DBG(...) EINA_LOG_DOM_DBG(_eo_log_dom, __VA_ARGS__)
-typedef size_t Eo_Id;
+/**
+ * @typedef Eo_Class_Id
+ * An Id of a class.
+ * @ingroup Eo_Class
+ */
+typedef uintptr_t Eo_Class_Id;
+/**
+ * @typedef Eo_Id
+ * An Id of an object.
+ */
+typedef uintptr_t Eo_Id;
+
typedef struct _Eo_Class _Eo_Class;
typedef struct _Eo_Internal _Eo;
@@ -98,13 +109,6 @@ struct _Eo_Internal {
Eina_Bool manual_free:1;
};
-/**
- * @typedef Eo_Class_Id
- * An Id of a class.
- * @ingroup Eo_Class
- */
-typedef uintptr_t Eo_Class_Id;
-
typedef struct _Dich_Chain1 Dich_Chain1;
typedef struct