[asterisk-commits] rmudgett: trunk r172370 - /trunk/include/asterisk/say.h
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Jan 29 13:34:09 CST 2009
Author: rmudgett
Date: Thu Jan 29 13:34:09 2009
New Revision: 172370
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=172370
Log:
Fixed some doxygen comments
Modified:
trunk/include/asterisk/say.h
Modified: trunk/include/asterisk/say.h
URL: http://svn.digium.com/svn-view/asterisk/trunk/include/asterisk/say.h?view=diff&rev=172370&r1=172369&r2=172370
==============================================================================
--- trunk/include/asterisk/say.h (original)
+++ trunk/include/asterisk/say.h Thu Jan 29 13:34:09 2009
@@ -66,13 +66,14 @@
#define SAY_EXTERN extern
#endif
-/*
+/*!
* \brief says a number
* \param chan channel to say them number on
* \param num number to say on the channel
* \param ints which dtmf to interrupt on
* \param lang language to speak the number
* \param options set to 'f' for female, 'm' for male, 'c' for commune, 'n' for neuter, 'p' for plural
+ * \details
* Vocally says a number on a given channel
* \retval 0 on success
* \retval DTMF digit on interrupt
@@ -84,15 +85,16 @@
/* Same as above 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);
-/*
+/*!
* \brief says an enumeration
* \param chan channel to say them enumeration on
* \param num number to say on the channel
* \param ints which dtmf to interrupt on
* \param lang language to speak the enumeration
* \param options set to 'f' for female, 'm' for male, 'c' for commune, 'n' for neuter, 'p' for plural
- * Vocally says a enumeration on a given channel (first, sencond, third, forth, thirtyfirst, hundredth, ....)
- * especially useful for dates and messages. says 'last' if num equals to INT_MAX
+ * \details
+ * Vocally says an enumeration on a given channel (first, sencond, third, forth, thirtyfirst, hundredth, ....)
+ * Especially useful for dates and messages. Says 'last' if num equals to INT_MAX
* \retval 0 on success
* \retval DTMF digit on interrupt
* \retval -1 on failure
@@ -102,12 +104,13 @@
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);
-/*
+/*!
* \brief says digits
* \param chan channel to act upon
* \param num number to speak
* \param ints which dtmf to interrupt on
* \param lang language to speak
+ * \details
* Vocally says digits of a given number
* \retval 0 on success
* \retval DTMF if interrupted
@@ -119,12 +122,13 @@
int ast_say_digits_full(struct ast_channel *chan, int num,
const char *ints, const char *lang, int audiofd, int ctrlfd);
-/*
+/*!
* \brief says digits of a string
* \param chan channel to act upon
* \param num string to speak
* \param ints which dtmf to interrupt on
* \param lang language to speak in
+ * \details
* Vocally says the digits of a given string
* \retval 0 on succes
* \retval DTMF if interrupted
More information about the asterisk-commits
mailing list