Introduced TO_EVAS_OBJECT.
[ruby-evas.git] / src / rb_evas_object.h
index fee1a15f60e0381262e5cd65792723e7f1cc82b0..91a90c5a18052d39b9b8257022d17b68c5ef3640 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rb_evas_object.h 42 2004-07-25 16:08:00Z tilman $
+ * $Id: rb_evas_object.h 68 2004-08-16 15:42:19Z tilman $
  *
  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
  *
 #ifndef __RB_EVAS_OBJECT_H
 #define __RB_EVAS_OBJECT_H
 
+#include <stdbool.h>
+
 #define RUBY_EVAS_OBJECT_KEY "__RB_EVAS_OBJECT_OBJECT"
 
-VALUE cEvasObject;
+typedef struct {
+       Evas_Object *real;
+       VALUE parent;
+} RbEvasObject;
 
 void Init_EvasObject (void);
 
-void c_evas_object_free (Evas_Object **e);
-void c_evas_object_mark (Evas_Object **e);
+void c_evas_object_free (RbEvasObject *e, bool free_mem);
+void c_evas_object_mark (RbEvasObject *e);
+
+VALUE TO_EVAS_OBJECT (Evas_Object *o);
+
+#ifndef __RB_EVAS_OBJECT_C
+extern VALUE cEvasObject;
+#endif
 
 #endif