Documentation arrived.
[ruby-ecore.git] / src / ecore / rb_ecore.c
index 9355e36280a404ca0417a9004b60f28d0bf46be5..3487662a5f446d1ae8edd6660891db7baab76a16 100644 (file)
@@ -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)
  *
 
 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 ();