From ea399862c4d96cc7ff58fa5bbc317864bdde6c2a Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Wed, 20 Sep 2006 04:45:45 +0000 Subject: move more API into the ast_ namespace git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43310 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- include/asterisk/agi.h | 4 ++-- res/res_agi.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/asterisk/agi.h b/include/asterisk/agi.h index 226041173..5a0edc83f 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 7794449aa..736cea394 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