Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : apps/e_modules

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


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/notes/e_mod_main.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- e_mod_main.c        4 Apr 2005 10:49:31 -0000       1.19
+++ e_mod_main.c        12 Apr 2005 03:35:52 -0000      1.20
@@ -34,7 +34,7 @@
 
 /* public module routines. all modules must have these */
 void *
-init (E_Module *m)
+e_modapi_init (E_Module *m)
 {
    Note *n;
    
@@ -58,7 +58,7 @@
 }
 
 int
-shutdown (E_Module *m)
+e_modapi_shutdown (E_Module *m)
 {
    Note *n;
    
@@ -76,7 +76,7 @@
 }
 
 int
-save (E_Module *m)
+e_modapi_save (E_Module *m)
 {
    Note *n;
    Evas_List *l, *l2;
@@ -104,7 +104,7 @@
 }
 
 int
-info (E_Module *m)
+e_modapi_info (E_Module *m)
 {
    m->label = strdup("Notes");
    m->icon_file = strdup(PACKAGE_LIB_DIR "/e_modules/notes/module_icon.png");
@@ -113,7 +113,7 @@
 }
 
 int
-about (E_Module *m)
+e_modapi_about (E_Module *m)
 {
    e_error_dialog_show ("Enlightenment Notes Module",
                        "A desktop sticky notes module.");
===================================================================
RCS file: 
/cvsroot/enlightenment/e17/apps/e_modules/src/modules/notes/e_mod_main.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- e_mod_main.h        4 Apr 2005 10:49:32 -0000       1.10
+++ e_mod_main.h        12 Apr 2005 03:35:52 -0000      1.11
@@ -64,10 +64,10 @@
    Note_Face_Config *conf;
 };
 
-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