aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/features.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asterisk/features.h')
-rwxr-xr-xinclude/asterisk/features.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asterisk/features.h b/include/asterisk/features.h
index f5c31f88c..5865b42ec 100755
--- a/include/asterisk/features.h
+++ b/include/asterisk/features.h
@@ -17,7 +17,7 @@
#ifndef _AST_FEATURES_H
#define _AST_FEATURES_H
-//! Park a call and read back parked location
+/*! Park a call and read back parked location */
/*! \param chan the channel to actually be parked
\param host the channel which will have the parked location read to
Park the channel chan, and read back the parked location to the
@@ -28,7 +28,7 @@
\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);
-//! Park a call via a masqueraded channel
+/*! Park a call via a masqueraded channel */
/*! \param rchan the real channel to be parked
\param host the channel to have the parking read to
Masquerade the channel rchan into a new, empty channel which is then
@@ -38,13 +38,13 @@ extern int ast_park_call(struct ast_channel *chan, struct ast_channel *host, int
*/
extern int ast_masq_park_call(struct ast_channel *rchan, struct ast_channel *host, int timeout, int *extout);
-//! Determine system parking extension
+/*! Determine system parking extension */
/*! Returns the call parking extension for drivers that provide special
call parking help */
extern char *ast_parking_ext(void);
extern char *ast_pickup_ext(void);
-//! Bridge a call, optionally allowing redirection
+/*! Bridge a call, optionally allowing redirection */
extern int ast_bridge_call(struct ast_channel *chan, struct ast_channel *peer,struct ast_bridge_config *config);