summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-10-16 21:14:05 +0000
committerMark Spencer <markster@digium.com>2004-10-16 21:14:05 +0000
commit3e5368b763895a5cfea775b6c6fd25c76d4d75ef (patch)
tree9fa6eb3aa483dc8f3bb45b0864fda45632087387 /include
parenta3e8fa573cf512068edc1a48093d736acb91f5fd (diff)
Provide module command completion (make twisted happy)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4022 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include')
-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));