aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/module.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-16 21:14:05 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-10-16 21:14:05 +0000
commitcc8b63051acce13bdf4e2107a2215411132addc0 (patch)
tree9fa6eb3aa483dc8f3bb45b0864fda45632087387 /include/asterisk/module.h
parent6ed5aaf067ceef422b57eb8a572dc93588f59d84 (diff)
Provide module command completion (make twisted happy)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4022 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/module.h')
-rwxr-xr-xinclude/asterisk/module.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index d8e5e1285..683cd970e 100755
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -138,7 +138,9 @@ int ast_loader_unregister(int (*updater)(void));
* This reloads all modules set to load in asterisk. It does NOT run the unload
* routine and then loads them again, it runs the given reload routine.
*/
-void ast_module_reload(const char *name);
+int ast_module_reload(const char *name);
+
+char *ast_module_helper(char *line, char *word, int pos, int state, int rpos, int needsreload);
int ast_register_atexit(void (*func)(void));
void ast_unregister_atexit(void (*func)(void));