[svn-commits] russell: branch group/newcdr r201988 - in /team/group/newcdr: include/asteris...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Jun 19 14:14:11 CDT 2009


Author: russell
Date: Fri Jun 19 14:14:06 2009
New Revision: 201988

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=201988
Log:
Add prototypes of internal use only functions to _private.h

Modified:
    team/group/newcdr/include/asterisk/_private.h
    team/group/newcdr/include/asterisk/cel.h
    team/group/newcdr/main/cel.c

Modified: team/group/newcdr/include/asterisk/_private.h
URL: http://svn.asterisk.org/svn-view/asterisk/team/group/newcdr/include/asterisk/_private.h?view=diff&rev=201988&r1=201987&r2=201988
==============================================================================
--- team/group/newcdr/include/asterisk/_private.h (original)
+++ team/group/newcdr/include/asterisk/_private.h Fri Jun 19 14:14:06 2009
@@ -42,6 +42,9 @@
 int ast_indications_init(void); /*!< Provided by indications.c */
 int ast_indications_reload(void);/*!< Provided by indications.c */
 void ast_stun_init(void);               /*!< Provided by stun.c */
+int ast_cel_engine_init(void);		/*!< Provided by cel.c */
+void ast_cel_engine_term(void);		/*!< Provided by cel.c */
+int ast_cel_engine_reload(void);	/*!< Provided by cel.c */
 
 /*!
  * \brief Reload asterisk modules.

Modified: team/group/newcdr/include/asterisk/cel.h
URL: http://svn.asterisk.org/svn-view/asterisk/team/group/newcdr/include/asterisk/cel.h?view=diff&rev=201988&r1=201987&r2=201988
==============================================================================
--- team/group/newcdr/include/asterisk/cel.h (original)
+++ team/group/newcdr/include/asterisk/cel.h Fri Jun 19 14:14:06 2009
@@ -130,10 +130,6 @@
 
 void ast_cel_report_event(const struct ast_channel *chan, enum ast_cel_eventtype, char *userdefevname, const char *extra, const struct ast_channel *peer2);
 
-int ast_cel_engine_init(void);
-void ast_cel_engine_term(void);
-int ast_cel_engine_reload(void);
-
 #if defined(__cplusplus) || defined(c_plusplus)
 }
 #endif

Modified: team/group/newcdr/main/cel.c
URL: http://svn.asterisk.org/svn-view/asterisk/team/group/newcdr/main/cel.c?view=diff&rev=201988&r1=201987&r2=201988
==============================================================================
--- team/group/newcdr/main/cel.c (original)
+++ team/group/newcdr/main/cel.c Fri Jun 19 14:14:06 2009
@@ -25,6 +25,8 @@
 #include "asterisk.h"
 
 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
+
+#include "asterisk/_private.h"
 
 #include "asterisk/channel.h"
 #include "asterisk/pbx.h"




More information about the svn-commits mailing list