Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : apps/e_modules

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


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/snow/e_mod_main.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- e_mod_main.c        30 Mar 2005 12:44:52 -0000      1.4
+++ e_mod_main.c        12 Apr 2005 03:35:52 -0000      1.5
@@ -23,7 +23,7 @@
 
 /* public module routines. all modules must have these */
 void *
-init(E_Module *m)
+e_modapi_init(E_Module *m)
 {
    Snow *snow;
    
@@ -44,7 +44,7 @@
 }
 
 int
-shutdown(E_Module *m)
+e_modapi_shutdown(E_Module *m)
 {
    Snow *snow;
    
@@ -63,7 +63,7 @@
 }
 
 int
-save(E_Module *m)
+e_modapi_save(E_Module *m)
 {
    Snow *snow;
    
@@ -74,7 +74,7 @@
 }
 
 int
-info(E_Module *m)
+e_modapi_info(E_Module *m)
 {
    m->label = strdup("Snow");
    m->icon_file = strdup(PACKAGE_LIB_DIR "/e_modules/snow/module_icon.png");
@@ -82,7 +82,7 @@
 }
 
 int
-about(E_Module *m)
+e_modapi_about(E_Module *m)
 {
    e_error_dialog_show("Enlightenment Snow Module",
                       "This is a snow module that may replace xsnow.");
===================================================================
RCS file: 
/cvsroot/enlightenment/e17/apps/e_modules/src/modules/snow/e_mod_main.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- e_mod_main.h        30 Mar 2005 09:58:26 -0000      1.1
+++ e_mod_main.h        12 Apr 2005 03:35:52 -0000      1.2
@@ -33,10 +33,10 @@
    int             speed;
 };
 
-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




-------------------------------------------------------
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