[asterisk-commits] kpfleming: trunk r43310 - in /trunk: include/asterisk/agi.h res/res_agi.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Tue Sep 19 21:45:46 MST 2006


Author: kpfleming
Date: Tue Sep 19 23:45:45 2006
New Revision: 43310

URL: http://svn.digium.com/view/asterisk?rev=43310&view=rev
Log:
move more API into the ast_ namespace

Modified:
    trunk/include/asterisk/agi.h
    trunk/res/res_agi.c

Modified: trunk/include/asterisk/agi.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/agi.h?rev=43310&r1=43309&r2=43310&view=diff
==============================================================================
--- trunk/include/asterisk/agi.h (original)
+++ trunk/include/asterisk/agi.h Tue Sep 19 23:45:45 2006
@@ -46,8 +46,8 @@
 	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)
 }

Modified: trunk/res/res_agi.c
URL: http://svn.digium.com/view/asterisk/trunk/res/res_agi.c?rev=43310&r1=43309&r2=43310&view=diff
==============================================================================
--- trunk/res/res_agi.c (original)
+++ trunk/res/res_agi.c Tue Sep 19 23:45:45 2006
@@ -1658,7 +1658,7 @@
 	return 0;
 }
 
-int agi_register(agi_command *agi)
+int ast_agi_register(agi_command *agi)
 {
 	int x;
 	for (x=0; x<MAX_COMMANDS - 1; x++) {
@@ -1677,7 +1677,7 @@
 	return -1;
 }
 
-void agi_unregister(agi_command *agi)
+void ast_agi_unregister(agi_command *agi)
 {
 	int x;
 	for (x=0; x<MAX_COMMANDS - 1; x++) {



More information about the asterisk-commits mailing list