dect
/
asterisk
Archived
13
0
Fork 0

Doxygen formatting

You can't write "same as above" in hypertext documentation. Above doesn't make sense in
hyperspace.


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@284217 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
oej 2010-08-30 08:25:50 +00:00
parent a659985a9d
commit e270fd7138
1 changed files with 7 additions and 4 deletions

View File

@ -82,7 +82,7 @@ static int say_stub(struct ast_channel *chan, ...)
int ast_say_number(struct ast_channel *chan, int num,
const char *ints, const char *lang, const char *options);
/* Same as above with audiofd for received audio and returns 1 on ctrlfd being readable */
/*! \brief Same as \ref ast_say_number() with audiofd for received audio and returns 1 on ctrlfd being readable */
SAY_EXTERN int (* ast_say_number_full)(struct ast_channel *chan, int num, const char *ints, const char *lang, const char *options, int audiofd, int ctrlfd) SAY_INIT(ast_say_number_full);
/*!
@ -102,6 +102,7 @@ SAY_EXTERN int (* ast_say_number_full)(struct ast_channel *chan, int num, const
int ast_say_enumeration(struct ast_channel *chan, int num,
const char *ints, const char *lang, const char *options);
/*! \brief Same as \ref ast_say_enumeration() with audiofd for received audio and returns 1 on ctrlfd being readable */
SAY_EXTERN int (* ast_say_enumeration_full)(struct ast_channel *chan, int num, const char *ints, const char *lang, const char *options, int audiofd, int ctrlfd) SAY_INIT(ast_say_enumeration_full);
/*!
@ -119,6 +120,7 @@ SAY_EXTERN int (* ast_say_enumeration_full)(struct ast_channel *chan, int num, c
int ast_say_digits(struct ast_channel *chan, int num,
const char *ints, const char *lang);
/*! \brief Same as \ref ast_say_digits() with audiofd for received audio and returns 1 on ctrlfd being readable */
int ast_say_digits_full(struct ast_channel *chan, int num,
const char *ints, const char *lang, int audiofd, int ctrlfd);
@ -137,16 +139,17 @@ int ast_say_digits_full(struct ast_channel *chan, int num,
int ast_say_digit_str(struct ast_channel *chan, const char *num,
const char *ints, const char *lang);
/*! \brief Same as \ref ast_say_digit_str() with audiofd for received audio and returns 1 on ctrlfd being readable */
SAY_EXTERN int (* ast_say_digit_str_full)(struct ast_channel *chan, const char *num, const char *ints, const char *lang, int audiofd, int ctrlfd) SAY_INIT(ast_say_digit_str_full);
/*
/*! \brief
* the generic 'say' routine, with the first chars in the string
* defining the format to use
*/
SAY_EXTERN int (* ast_say_full)(struct ast_channel *chan, const char *num, const char *ints, const char *lang, const char *options, int audiofd, int ctrlfd) SAY_INIT(ast_say_full);
/*
* other function to pronounce character and phonetic strings
/*! \brief
* function to pronounce character and phonetic strings
*/
int ast_say_character_str(struct ast_channel *chan, const char *num,
const char *ints, const char *lang);