[cogl/wip/cogl-sharp: 9/13] object: Move cogl_object_{ref, unref}() to cogl-object.h
- From: Damien Lespiau <dlespiau src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [cogl/wip/cogl-sharp: 9/13] object: Move cogl_object_{ref, unref}() to cogl-object.h
- Date: Sun, 30 Sep 2012 17:49:05 +0000 (UTC)
commit 4b7a332eb6e44dbe3faf40554ac6b7330d1eb1db
Author: Damien Lespiau <damien lespiau intel com>
Date: Sun Sep 30 00:24:46 2012 +0100
object: Move cogl_object_{ref,unref}() to cogl-object.h
cogl/cogl-object.h | 21 +++++++++++++++++++++
cogl/cogl-types.h | 21 ---------------------
2 files changed, 21 insertions(+), 21 deletions(-)
---
diff --git a/cogl/cogl-object.h b/cogl/cogl-object.h
index 633c6af..a65bd9c 100644
--- a/cogl/cogl-object.h
+++ b/cogl/cogl-object.h
@@ -30,6 +30,27 @@ typedef struct _CoglObject CoglObject;
#define COGL_OBJECT(X) ((CoglObject *)X)
/**
+ * cogl_object_ref: (skip)
+ * @object: a #CoglObject
+ *
+ * Increases the reference count of @object by 1
+ *
+ * Returns: the @object, with its reference count increased
+ */
+void *
+cogl_object_ref (void *object);
+
+/**
+ * cogl_object_unref: (skip)
+ * @object: a #CoglObject
+ *
+ * Drecreases the reference count of @object by 1; if the reference
+ * count reaches 0, the resources allocated by @object will be freed
+ */
+void
+cogl_object_unref (void *object);
+
+/**
* CoglUserDataKey:
* @unused: ignored.
*
diff --git a/cogl/cogl-types.h b/cogl/cogl-types.h
index cec8a1a..3d096cd 100644
--- a/cogl/cogl-types.h
+++ b/cogl/cogl-types.h
@@ -94,27 +94,6 @@ typedef struct { \
} _ ## TYPE ## SizeCheck
/**
- * cogl_object_ref: (skip)
- * @object: a #CoglObject
- *
- * Increases the reference count of @object by 1
- *
- * Returns: the @object, with its reference count increased
- */
-void *
-cogl_object_ref (void *object);
-
-/**
- * cogl_object_unref: (skip)
- * @object: a #CoglObject
- *
- * Drecreases the reference count of @object by 1; if the reference
- * count reaches 0, the resources allocated by @object will be freed
- */
-void
-cogl_object_unref (void *object);
-
-/**
* CoglFuncPtr:
*
* The type used by cogl for function pointers, note that this type
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]