[asterisk-commits] oej: trunk r64494 - /trunk/main/dial.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Wed May 16 00:08:48 MST 2007
Author: oej
Date: Wed May 16 02:08:48 2007
New Revision: 64494
URL: http://svn.digium.com/view/asterisk?view=rev&rev=64494
Log:
Small doxygen updates
Modified:
trunk/main/dial.c
Modified: trunk/main/dial.c
URL: http://svn.digium.com/view/asterisk/trunk/main/dial.c?view=diff&rev=64494&r1=64493&r2=64494
==============================================================================
--- trunk/main/dial.c (original)
+++ trunk/main/dial.c Wed May 16 02:08:48 2007
@@ -72,13 +72,13 @@
/*! \brief Typedef for dial option disable */
typedef int (*ast_dial_option_cb_disable)(void *data);
-/* Structure for 'ANSWER_EXEC' option */
+/*! \brief Structure for 'ANSWER_EXEC' option */
struct answer_exec_struct {
- char app[AST_MAX_APP]; /* Application name */
- char *args; /* Application arguments */
+ char app[AST_MAX_APP]; /*!< Application name */
+ char *args; /*!< Application arguments */
};
-/* Enable function for 'ANSWER_EXEC' option */
+/*! \brief Enable function for 'ANSWER_EXEC' option */
static void *answer_exec_enable(void *data)
{
struct answer_exec_struct *answer_exec = NULL;
@@ -104,7 +104,7 @@
return answer_exec;
}
-/* Disable function for 'ANSWER_EXEC' option */
+/*! \brief Disable function for 'ANSWER_EXEC' option */
static int answer_exec_disable(void *data)
{
struct answer_exec_struct *answer_exec = data;
@@ -138,7 +138,7 @@
return 0;
}
-/* Application execution function for 'ANSWER_EXEC' option */
+/*! \brief Application execution function for 'ANSWER_EXEC' option */
static void answer_exec_run(struct ast_channel *chan, char *app, char *args)
{
struct ast_app *ast_app = pbx_findapp(app);
@@ -165,7 +165,7 @@
{ AST_DIAL_OPTION_MAX, NULL, NULL }, /*!< Terminator of list */
};
-/* free the buffer if allocated, and set the pointer to the second arg */
+/*! \brief free the buffer if allocated, and set the pointer to the second arg */
#define S_REPLACE(s, new_val) \
do { \
if (s) \
More information about the asterisk-commits
mailing list