X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Frb_evas_main.c;h=1c8b812c414022bb48eee53ffda7a89ff96f23d4;hb=2798e153edf68de89ca2ea53732d01ef7c7f0b64;hp=2fbb484c44e5067a52b9de329af170c6da4e915a;hpb=ba05ccf5a7b503e2d9a58c1de4072312b5abfab7;p=ruby-evas.git diff --git a/src/rb_evas_main.c b/src/rb_evas_main.c index 2fbb484..1c8b812 100644 --- a/src/rb_evas_main.c +++ b/src/rb_evas_main.c @@ -1,5 +1,5 @@ /* - * $Id: rb_evas_main.c 23 2004-06-26 22:55:31Z tilman $ + * $Id: rb_evas_main.c 281 2005-03-14 20:51:40Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -25,32 +25,27 @@ #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" - -static VALUE m_shutdown (VALUE self) -{ - evas_shutdown (); - - return Qnil; -} +#include "rb_smart.h" void Init_evas (void) { mEvas = rb_define_module ("Evas"); - rb_define_module_function (mEvas, "shutdown", m_shutdown, 0); - Init_Evas (); Init_EvasObject (); + Init_EvasObjectEvents (); Init_Rectangle (); Init_Line (); Init_Gradient (); Init_Polygon (); Init_Image (); Init_Text (); + Init_Smart (); }