aboutsummaryrefslogtreecommitdiffstats
path: root/funcs/func_callerid.c
diff options
context:
space:
mode:
Diffstat (limited to 'funcs/func_callerid.c')
-rw-r--r--funcs/func_callerid.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/funcs/func_callerid.c b/funcs/func_callerid.c
index b277df1c5..e87ed11a7 100644
--- a/funcs/func_callerid.c
+++ b/funcs/func_callerid.c
@@ -143,27 +143,24 @@ static struct ast_custom_function callerid_function = {
static char *tdesc = "Caller ID related dialplan function";
-int unload_module(void)
+static int unload_module(void *mod)
{
return ast_custom_function_unregister(&callerid_function);
}
-int load_module(void)
+static int load_module(void *mod)
{
return ast_custom_function_register(&callerid_function);
}
-const char *description(void)
+static const char *description(void)
{
return tdesc;
}
-int usecount(void)
-{
- return 0;
-}
-
-const char *key()
+static const char *key(void)
{
return ASTERISK_GPL_KEY;
}
+
+STD_MOD(MOD_1 | NO_USECOUNT, NULL, NULL, NULL);