Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/src/engines/evas_buffer


Modified Files:
        ewl_engine_evas_buffer.c 


Log Message:
- ewl_engine_new doesnt' need to call the init param as all of the
  create_engine functions have to do it already. 
- remove init function pointer.
- pass the argc and argv array to the engines so they can pull out params if
  needed

===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/engines/evas_buffer/ewl_engine_evas_buffer.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- ewl_engine_evas_buffer.c    4 Jan 2007 05:09:45 -0000       1.9
+++ ewl_engine_evas_buffer.c    8 Jan 2007 13:32:40 -0000       1.10
@@ -34,7 +34,7 @@
 }
 
 Ewl_Engine *
-ewl_engine_create(void)
+ewl_engine_create(int *argv, char ** argc)
 {
        Ewl_Engine_Evas_Buffer *engine;
 
@@ -62,7 +62,6 @@
        DCHECK_PARAM_PTR_RET("engine", engine, TRUE);
 
        info = NEW(Ewl_Engine_Info, 1);
-       info->init = ee_init;
        info->shutdown = ee_shutdown;
        info->hooks.canvas = canvas_funcs;
 



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to