X-Git-Url: http://git.code-monkey.de/?p=ruby-evas.git;a=blobdiff_plain;f=src%2Frb_evas_main.c;h=69307d68b758d0916a4e633472d916846b1ee703;hp=288408a1340714717f91b3e7617d0acc5af1d2dc;hb=45ab448e73c15a66cc6e4968df7cfdcf894cf6fe;hpb=12968e62897c3cc69ed0759ddb6cfae61ba33551 diff --git a/src/rb_evas_main.c b/src/rb_evas_main.c index 288408a..69307d6 100644 --- a/src/rb_evas_main.c +++ b/src/rb_evas_main.c @@ -1,5 +1,5 @@ /* - * $Id: rb_evas_main.c 29 2004-07-08 18:47:44Z tilman $ + * $Id: rb_evas_main.c 55 2004-08-09 10:55:08Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -32,27 +32,10 @@ #include "rb_image.h" #include "rb_text.h" -#ifdef DEBUG -static VALUE m_init (VALUE self) -{ - return INT2FIX (evas_init ()); -} - -static VALUE m_shutdown (VALUE self) -{ - return INT2FIX (evas_shutdown ()); -} -#endif - void Init_evas (void) { mEvas = rb_define_module ("Evas"); -#ifdef DEBUG - rb_define_module_function (mEvas, "init", m_init, 0); - rb_define_module_function (mEvas, "shutdown", m_shutdown, 0); -#endif - Init_Evas (); Init_EvasObject (); Init_Rectangle ();