Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : apps/e_modules

Dir     : e17/apps/e_modules/src/modules/flame


Modified Files:
        e_mod_main.c e_mod_main.h 


Log Message:
- fixed to match e17 changes

===================================================================
RCS file: 
/cvsroot/enlightenment/e17/apps/e_modules/src/modules/flame/e_mod_main.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- e_mod_main.c        1 Apr 2005 16:23:34 -0000       1.1
+++ e_mod_main.c        12 Apr 2005 03:35:52 -0000      1.2
@@ -41,7 +41,7 @@
 
 /* public module routines. all modules must have these */
 void *
-init (E_Module *m)
+e_modapi_init (E_Module *m)
 {
    Flame *f;
    
@@ -64,7 +64,7 @@
 }
 
 int
-shutdown (E_Module *m)
+e_modapi_shutdown (E_Module *m)
 {
    Flame *f;
    
@@ -84,7 +84,7 @@
 }
 
 int
-save (E_Module *m)
+e_modapi_save (E_Module *m)
 {
    Flame *f;
    
@@ -96,7 +96,7 @@
 }
 
 int
-info (E_Module *m)
+e_modapi_info (E_Module *m)
 {
    m->label = strdup("Flame");
    m->icon_file = strdup(PACKAGE_LIB_DIR "/e_modules/flame/module_icon.png");
@@ -105,7 +105,7 @@
 }
 
 int
-about (E_Module *m)
+e_modapi_about (E_Module *m)
 {
    e_error_dialog_show ("Enlightenment Flame Module",
                        "A simple module to display flames.");
===================================================================
RCS file: 
/cvsroot/enlightenment/e17/apps/e_modules/src/modules/flame/e_mod_main.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- e_mod_main.h        1 Apr 2005 16:23:34 -0000       1.1
+++ e_mod_main.h        12 Apr 2005 03:35:52 -0000      1.2
@@ -57,10 +57,10 @@
    Ecore_Event_Handler *ev_handler_container_resize;
 };
 
-EAPI void *init     (E_Module *m);
-EAPI int   shutdown (E_Module *m);
-EAPI int   save     (E_Module *m);
-EAPI int   info     (E_Module *m);
-EAPI int   about    (E_Module *m);
+EAPI void *e_modapi_init     (E_Module *m);
+EAPI int   e_modapi_shutdown (E_Module *m);
+EAPI int   e_modapi_save     (E_Module *m);
+EAPI int   e_modapi_info     (E_Module *m);
+EAPI int   e_modapi_about    (E_Module *m);
 
 #endif /* E_MOD_MAIN_H */




-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to