[asterisk-commits] trunk r16611 - in /trunk/include/asterisk: app.h features.h

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Thu Mar 30 17:11:47 MST 2006


Author: rizzo
Date: Thu Mar 30 18:11:45 2006
New Revision: 16611

URL: http://svn.digium.com/view/asterisk?rev=16611&view=rev
Log:
remove useless 'extern' in function declarations.


Modified:
    trunk/include/asterisk/app.h
    trunk/include/asterisk/features.h

Modified: trunk/include/asterisk/app.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/app.h?rev=16611&r1=16610&r2=16611&view=diff
==============================================================================
--- trunk/include/asterisk/app.h (original)
+++ trunk/include/asterisk/app.h Thu Mar 30 18:11:45 2006
@@ -80,7 +80,7 @@
 
 /*!	\brief Runs an IVR menu 
 	\return returns 0 on successful completion, -1 on hangup, or -2 on user error in menu */
-extern int ast_ivr_menu_run(struct ast_channel *c, struct ast_ivr_menu *menu, void *cbdata);
+int ast_ivr_menu_run(struct ast_channel *c, struct ast_ivr_menu *menu, void *cbdata);
 
 /*! \brief Plays a stream and gets DTMF data from a channel 
  * \param c Which channel one is interacting with
@@ -94,10 +94,10 @@
  *  is pressed during playback, it will immediately break out of the message and continue
  *  execution of your code.
  */
-extern int ast_app_getdata(struct ast_channel *c, char *prompt, char *s, int maxlen, int timeout);
+int ast_app_getdata(struct ast_channel *c, char *prompt, char *s, int maxlen, int timeout);
 
 /*! \brief Full version with audiofd and controlfd.  NOTE: returns '2' on ctrlfd available, not '1' like other full functions */
-extern int ast_app_getdata_full(struct ast_channel *c, char *prompt, char *s, int maxlen, int timeout, int audiofd, int ctrlfd);
+int ast_app_getdata_full(struct ast_channel *c, char *prompt, char *s, int maxlen, int timeout, int audiofd, int ctrlfd);
 
 /*! Record voice (after playing prompt if specified), waiting for silence (in ms) up to a given timeout (in s) or '#' */
 int ast_app_getvoice(struct ast_channel *c, char *dest, char *dstfmt, char *prompt, int silence, int maxsec);
@@ -116,7 +116,7 @@
 /*! Safely spawn an external program while closing file descriptors 
 	\note This replaces the \b system call in all Asterisk modules
 */
-extern int ast_safe_system(const char *s);
+int ast_safe_system(const char *s);
 
 /*!
   \brief Send DTMF to a channel

Modified: trunk/include/asterisk/features.h
URL: http://svn.digium.com/view/asterisk/trunk/include/asterisk/features.h?rev=16611&r1=16610&r2=16611&view=diff
==============================================================================
--- trunk/include/asterisk/features.h (original)
+++ trunk/include/asterisk/features.h Thu Mar 30 18:11:45 2006
@@ -56,7 +56,7 @@
 	\param timeout is a timeout in milliseconds
 	\param extout is a parameter to an int that will hold the parked location, or NULL if you want
 */
-extern int ast_park_call(struct ast_channel *chan, struct ast_channel *host, int timeout, int *extout);
+int ast_park_call(struct ast_channel *chan, struct ast_channel *host, int timeout, int *extout);
 
 /*! \brief Park a call via a masqueraded channel
  *  \param rchan the real channel to be parked
@@ -66,30 +66,30 @@
 	\param timeout is a timeout in milliseconds
 	\param extout is a parameter to an int that will hold the parked location, or NULL if you want
 */
-extern int ast_masq_park_call(struct ast_channel *rchan, struct ast_channel *host, int timeout, int *extout);
+int ast_masq_park_call(struct ast_channel *rchan, struct ast_channel *host, int timeout, int *extout);
 
 /*! \brief Determine system parking extension
  *  Returns the call parking extension for drivers that provide special
     call parking help */
-extern char *ast_parking_ext(void);
+char *ast_parking_ext(void);
 
 /*! \brief Determine system call pickup extension */
-extern char *ast_pickup_ext(void);
+char *ast_pickup_ext(void);
 
 /*! \brief Bridge a call, optionally allowing redirection */
-extern int ast_bridge_call(struct ast_channel *chan, struct ast_channel *peer,struct ast_bridge_config *config);
+int ast_bridge_call(struct ast_channel *chan, struct ast_channel *peer,struct ast_bridge_config *config);
 
 /*! \brief Pickup a call */
-extern int ast_pickup_call(struct ast_channel *chan);
+int ast_pickup_call(struct ast_channel *chan);
 
 /*! \brief register new feature into feature_set 
    \param feature an ast_call_feature object which contains a keysequence
    and a callback function which is called when this keysequence is pressed
    during a call. */
-extern void ast_register_feature(struct ast_call_feature *feature);
+void ast_register_feature(struct ast_call_feature *feature);
 
 /*! \brief unregister feature from feature_set
     \param feature the ast_call_feature object which was registered before*/
-extern void ast_unregister_feature(struct ast_call_feature *feature);
+void ast_unregister_feature(struct ast_call_feature *feature);
 
 #endif /* _AST_FEATURES_H */



More information about the asterisk-commits mailing list