mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-06 13:07:21 +00:00
Repair // comments to /* */ comments (bug #3347)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4806 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user