summaryrefslogtreecommitdiff
path: root/include/asterisk/module.h
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-01-16 22:59:30 +0000
committerMark Spencer <markster@digium.com>2005-01-16 22:59:30 +0000
commit1496da97fb0984fa7734d91607960aea83d173fa (patch)
tree84c2923fd344e5bf0c06914b1cde63e6eefded0c /include/asterisk/module.h
parent261b4a85e13fec22d3d4e7759523608232432d3c (diff)
Optimize module loading (bug #3356)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4814 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/module.h')
-rwxr-xr-xinclude/asterisk/module.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index 41cb6f39a..f1cc115f1 100755
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -89,7 +89,7 @@ this paragraph under other terms as well."
* it will do the rest.
* It returns 0 on success, -1 on error
*/
-int ast_load_resource(char *resource_name);
+int ast_load_resource(const char *resource_name);
/*! Unloads a module */
/*!
@@ -99,7 +99,7 @@ int ast_load_resource(char *resource_name);
* it will not unload a module with a usecount > 0. However, if it is set,
* it will unload the module regardless of consequences (NOT_RECOMMENDED)
*/
-int ast_unload_resource(char *resource_name, int force);
+int ast_unload_resource(const char *resource_name, int force);
/*! Notify when usecount has been changed */
/*!