Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_module.c 


Log Message:
- change the names of the module entry points. This will break other
  modules. 
   init -> e_modapi_init
   shutdown -> e_modapi_shutdown
   about -> e_modapi_about
   info -> e_modapi_info
   save -> e_modapi_save

===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_module.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -3 -r1.22 -r1.23
--- e_module.c  11 Apr 2005 20:25:52 -0000      1.22
+++ e_module.c  12 Apr 2005 03:34:27 -0000      1.23
@@ -116,11 +116,11 @@
        free(m);
        return NULL;
      }
-   m->func.init = dlsym(m->handle, "init");
-   m->func.shutdown = dlsym(m->handle, "shutdown");
-   m->func.save = dlsym(m->handle, "save");
-   m->func.info = dlsym(m->handle, "info");
-   m->func.about = dlsym(m->handle, "about");
+   m->func.init = dlsym(m->handle, "e_modapi_init");
+   m->func.shutdown = dlsym(m->handle, "e_modapi_shutdown");
+   m->func.save = dlsym(m->handle, "e_modapi_save");
+   m->func.info = dlsym(m->handle, "e_modapi_info");
+   m->func.about = dlsym(m->handle, "e_modapi_about");
    if ((!m->func.init) ||
        (!m->func.shutdown) ||
        (!m->func.save) ||




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