Class instantiation fixes.
[ruby-evas.git] / src / rb_evas_object.h
index 8760498541d094c23c5629583d1c3b779822175a..fb08ed0cf4aac9cf6fa667874542b0a38111d211 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rb_evas_object.h 49 2004-08-01 10:17:39Z tilman $
+ * $Id: rb_evas_object.h 354 2006-02-10 18:14:08Z tilman $
  *
  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
  *
 typedef struct {
        Evas_Object *real;
        VALUE parent;
+       VALUE callbacks;
+       VALUE userdata;
 } RbEvasObject;
 
 void Init_EvasObject (void);
 
-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;