Enlightenment CVS committal

Author  : doursse
Project : e17
Module  : libs/ecore

Dir     : e17/libs/ecore/src/lib/ecore


Modified Files:
        Ecore_Data.h ecore_plugin.c 


Log Message:
add some const

===================================================================
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/Ecore_Data.h,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -3 -r1.31 -r1.32
--- Ecore_Data.h        1 Feb 2007 19:22:35 -0000       1.31
+++ Ecore_Data.h        3 Feb 2007 17:59:05 -0000       1.32
@@ -317,7 +317,7 @@
    /*
     * Load the specified plugin
     */
-   EAPI Ecore_Plugin *ecore_plugin_load(int group_id, char *plugin);
+   EAPI Ecore_Plugin *ecore_plugin_load(int group_id, const char *plugin);
    
    /*
     * Unload the specified plugin
@@ -327,7 +327,7 @@
    /*
     * Lookup the specified symbol for the plugin
     */
-   EAPI void *ecore_plugin_call(Ecore_Plugin * plugin, char *symbol_name);
+   EAPI void *ecore_plugin_call(Ecore_Plugin * plugin, const char 
*symbol_name);
    
    EAPI Ecore_List *ecore_plugin_get_available(int group_id);
 
===================================================================
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/ecore_plugin.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- ecore_plugin.c      27 Jan 2007 04:05:58 -0000      1.9
+++ ecore_plugin.c      3 Feb 2007 17:59:05 -0000       1.10
@@ -20,7 +20,7 @@
  * @ingroup Ecore_Plugin
  */
 EAPI Ecore_Plugin *
-ecore_plugin_load(int group_id, char *plugin_name)
+ecore_plugin_load(int group_id, const char *plugin_name)
 {
    char *path;
    char temp[PATH_MAX];
@@ -97,7 +97,7 @@
  * @ingroup Ecore_Plugin
  */
 EAPI void *
-ecore_plugin_call(Ecore_Plugin *plugin, char *symbol_name)
+ecore_plugin_call(Ecore_Plugin *plugin, const char *symbol_name)
 {
    void *ret;
 



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to