Added support for RUBYARCHDIR.
[ruby-evas.git] / src / rb_evas_main.c
index 69307d68b758d0916a4e633472d916846b1ee703..1c8b812c414022bb48eee53ffda7a89ff96f23d4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rb_evas_main.c 55 2004-08-09 10:55:08Z tilman $
+ * $Id: rb_evas_main.c 281 2005-03-14 20:51:40Z tilman $
  *
  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
  *
 #include "rb_evas_main.h"
 #include "rb_evas.h"
 #include "rb_evas_object.h"
+#include "rb_evas_object_events.h"
 #include "rb_rectangle.h"
 #include "rb_line.h"
 #include "rb_gradient.h"
 #include "rb_polygon.h"
 #include "rb_image.h"
 #include "rb_text.h"
+#include "rb_smart.h"
 
 void Init_evas (void)
 {
@@ -38,10 +40,12 @@ void Init_evas (void)
 
        Init_Evas ();
        Init_EvasObject ();
+       Init_EvasObjectEvents ();
        Init_Rectangle ();
        Init_Line ();
        Init_Gradient ();
        Init_Polygon ();
        Init_Image ();
        Init_Text ();
+       Init_Smart ();
 }