We now use real structs to wrap objects.
[ruby-edje.git] / src / rb_edje.h
index 2920daf42321986c672fc59472c35daa3785d250..b2be38cae5f64e753501c5f593367d97863043dd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rb_edje.h 7 2004-06-19 19:32:33Z tilman $
+ * $Id: rb_edje.h 51 2004-08-01 10:19:02Z tilman $
  *
  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
  *
 #ifndef __RB_EDJE_H
 #define __RB_EDJE_H
 
+#include <evas/rb_evas_object.h>
+
+typedef struct {
+       RbEvasObject real;
+       VALUE parts;
+       VALUE callbacks;
+       VALUE on_text_changed_cb;
+} RbEdje;
+
 void Init_Edje (void);
 
+#ifndef __RB_EDJE_C
+VALUE cEdje;
+#endif
+
 #endif