X-Git-Url: http://git.code-monkey.de/?p=ruby-ecore.git;a=blobdiff_plain;f=src%2Fecore%2Frb_ecore.c;h=3487662a5f446d1ae8edd6660891db7baab76a16;hp=9355e36280a404ca0417a9004b60f28d0bf46be5;hb=041804188a058aa7bbc76c81e4a816255a635f00;hpb=192810ef6a572e9581c60cdbbd5b3858e815d1d6 diff --git a/src/ecore/rb_ecore.c b/src/ecore/rb_ecore.c index 9355e36..3487662 100644 --- a/src/ecore/rb_ecore.c +++ b/src/ecore/rb_ecore.c @@ -1,5 +1,5 @@ /* - * $Id: rb_ecore.c 53 2004-08-07 11:22:00Z tilman $ + * $Id: rb_ecore.c 60 2004-08-10 14:12:36Z tilman $ * * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de) * @@ -29,6 +29,12 @@ VALUE mEcore; +/* + * call-seq: + * Ecore.main_loop_begin + * + * Starts the Ecore main loop. + */ static VALUE m_main_loop_begin (VALUE self) { ecore_main_loop_begin (); @@ -36,6 +42,12 @@ static VALUE m_main_loop_begin (VALUE self) return Qnil; } +/* + * call-seq: + * Ecore.main_loop_iterate + * + * Run one iteration of the Ecore main loop. + */ static VALUE m_main_loop_iterate (VALUE self) { ecore_main_loop_iterate (); @@ -43,6 +55,12 @@ static VALUE m_main_loop_iterate (VALUE self) return Qnil; } +/* + * call-seq: + * Ecore.main_loop_quit + * + * Stops the Ecore main loop. + */ static VALUE m_main_loop_quit (VALUE self) { ecore_main_loop_quit ();