Removed init/shutdown methods.
[ruby-evas.git] / src / rb_evas_main.c
index 2fbb484c44e5067a52b9de329af170c6da4e915a..69307d68b758d0916a4e633472d916846b1ee703 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rb_evas_main.c 23 2004-06-26 22:55:31Z tilman $
+ * $Id: rb_evas_main.c 55 2004-08-09 10:55:08Z tilman $
  *
  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
  *
 #include "rb_image.h"
 #include "rb_text.h"
 
-static VALUE m_shutdown (VALUE self)
-{
-       evas_shutdown ();
-
-       return Qnil;
-}
-
 void Init_evas (void)
 {
        mEvas = rb_define_module ("Evas");
 
-       rb_define_module_function (mEvas, "shutdown", m_shutdown, 0);
-
        Init_Evas ();
        Init_EvasObject ();
        Init_Rectangle ();