Enlightenment CVS committal

Author  : moom
Project : e17
Module  : libs/etk

Dir     : e17/libs/etk/src/engines/ecore_evas_gl_x11


Modified Files:
        ecore_evas_gl_x11.c 


Log Message:
* [Etk_Main] Add etk_init_full() that adds the ability to pass 
      custom options to Etk initialisation
* [Etk_Main] Change the prototype of etk_init() to "int etk_init(int 
      argc, char **argv). Existing programs have to be fixed!
* [Etk_Argument] No longer need to pass argc/argv to parse the arguments 
      and add etk_argument_get() to retrieve the argc/argv couple passed 
      to etk_init()


===================================================================
RCS file: 
/cvs/e/e17/libs/etk/src/engines/ecore_evas_gl_x11/ecore_evas_gl_x11.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- ecore_evas_gl_x11.c 29 Jun 2007 12:00:14 -0000      1.3
+++ ecore_evas_gl_x11.c 14 Oct 2007 20:39:57 -0000      1.4
@@ -8,7 +8,7 @@
 typedef Etk_Engine_Ecore_Evas_X11_Window_Data Etk_Engine_Window_Data;
 
 /* General engine functions */
-Etk_Engine *engine_open(int *argc, char ***argv);
+Etk_Engine *engine_open(void);
 void engine_close(void);
 
 /* Etk_Window functions */
@@ -91,11 +91,11 @@
  **************************/
 
 /* Called when the engine is loaded */
-Etk_Engine *engine_open(int *argc, char ***argv)
+Etk_Engine *engine_open(void)
 {
    engine_info.engine_data = NULL;
    engine_info.engine_name = strdup("ecore_evas_gl_x11");
-   etk_engine_inherit_from(&engine_info, "ecore_evas_x11", argc, argv);
+   etk_engine_inherit_from(&engine_info, "ecore_evas_x11");
    return &engine_info;
 }
 



-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to