From: Kevin P. Fleming Date: Wed, 20 Sep 2006 04:45:45 +0000 (+0000) Subject: move more API into the ast_ namespace X-Git-Tag: 1.4.0-beta1~41 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ea399862c4d96cc7ff58fa5bbc317864bdde6c2a;p=thirdparty%2Fasterisk.git move more API into the ast_ namespace git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43310 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/include/asterisk/agi.h b/include/asterisk/agi.h index 226041173f..5a0edc83f2 100644 --- a/include/asterisk/agi.h +++ b/include/asterisk/agi.h @@ -46,8 +46,8 @@ typedef struct agi_command { struct agi_command *next; } agi_command; -int agi_register(agi_command *cmd); -void agi_unregister(agi_command *cmd); +int ast_agi_register(agi_command *cmd); +void ast_agi_unregister(agi_command *cmd); #if defined(__cplusplus) || defined(c_plusplus) } diff --git a/res/res_agi.c b/res/res_agi.c index 7794449aa4..736cea3944 100644 --- a/res/res_agi.c +++ b/res/res_agi.c @@ -1658,7 +1658,7 @@ static int help_workhorse(int fd, char *match[]) return 0; } -int agi_register(agi_command *agi) +int ast_agi_register(agi_command *agi) { int x; for (x=0; x