Enlightenment CVS committal

Author  : dj2
Project : misc
Module  : engage

Dir     : misc/engage/src/module


Modified Files:
        e_mod_main.c e_mod_main.h 


Log Message:
match e17 changes

===================================================================
RCS file: /cvsroot/enlightenment/misc/engage/src/module/e_mod_main.c,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -3 -r1.40 -r1.41
--- e_mod_main.c        11 Apr 2005 11:52:58 -0000      1.40
+++ e_mod_main.c        12 Apr 2005 03:37:40 -0000      1.41
@@ -128,7 +128,7 @@
 
 /* public module routines. all modules must have these */
 void *
-init(E_Module *m)
+e_modapi_init(E_Module *m)
 {
    Engage *e;
 
@@ -151,7 +151,7 @@
 }
 
 int
-shutdown(E_Module *m)
+e_modapi_shutdown(E_Module *m)
 {
    Engage *e;
 
@@ -165,7 +165,7 @@
 }
 
 int
-save(E_Module *m)
+e_modapi_save(E_Module *m)
 {
    Engage *e;
 
@@ -175,7 +175,7 @@
 }
 
 int
-info(E_Module *m)
+e_modapi_info(E_Module *m)
 {
    m->label = strdup("Engage");
    m->icon_file = strdup(PACKAGE_LIB_DIR "/engage/module/module_icon.png");
@@ -183,7 +183,7 @@
 }
 
 int
-about(E_Module *m)
+e_modapi_about(E_Module *m)
 {
    e_error_dialog_show("Enlightenment Engage Module",
                       "This is the Engage module for Enlightenment.\n"
===================================================================
RCS file: /cvsroot/enlightenment/misc/engage/src/module/e_mod_main.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- e_mod_main.h        15 Mar 2005 18:28:35 -0000      1.8
+++ e_mod_main.h        12 Apr 2005 03:37:41 -0000      1.9
@@ -95,10 +95,10 @@
    E_Border      *border;
 };
 
-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