From f229a1fc568bf2de4fef690dc56e553af01bb17e Mon Sep 17 00:00:00 2001 From: rizzo Date: Thu, 6 Apr 2006 09:24:02 +0000 Subject: convert a couple of applications to the new module style (STATIC_MODULE) to show what needs to be changed. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@17791 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_record.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'apps/app_record.c') diff --git a/apps/app_record.c b/apps/app_record.c index 07167278c..ddf94a9eb 100644 --- a/apps/app_record.c +++ b/apps/app_record.c @@ -29,6 +29,8 @@ #include #include +#define STATIC_MODULE + #include "asterisk.h" ASTERISK_FILE_VERSION(__FILE__, "$Revision$") @@ -341,7 +343,7 @@ static int record_exec(struct ast_channel *chan, void *data) return res; } -int unload_module(void) +STATIC_MODULE int unload_module(void) { int res; @@ -352,24 +354,26 @@ int unload_module(void) return res; } -int load_module(void) +STATIC_MODULE int load_module(void) { return ast_register_application(app, record_exec, synopsis, descrip); } -char *description(void) +STATIC_MODULE char *description(void) { return tdesc; } -int usecount(void) +STATIC_MODULE int usecount(void) { int res; STANDARD_USECOUNT(res); return res; } -char *key() +STATIC_MODULE char *key(void) { return ASTERISK_GPL_KEY; } + +STD_MOD(MOD_1, NULL, NULL, NULL); -- cgit v1.2.3