aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/dial.h
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-24 21:43:22 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-01-24 21:43:22 +0000
commit6ef1b6067c929614fed96d3d7836d160567ed119 (patch)
treebde6e4800ef85d61f5a1923984a4df013f555c57 /include/asterisk/dial.h
parente79ccc3d326cb82e0c07cf22982b44bf77823e05 (diff)
Merged revisions 52107 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r52107 | russell | 2007-01-24 15:42:47 -0600 (Wed, 24 Jan 2007) | 3 lines Fix the formatting of doxygen comments to properly indicate that the comment documents the previous entity, as opposed to the next one. ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@52108 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/dial.h')
-rw-r--r--include/asterisk/dial.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/include/asterisk/dial.h b/include/asterisk/dial.h
index f8393abba..71ce6cfc8 100644
--- a/include/asterisk/dial.h
+++ b/include/asterisk/dial.h
@@ -35,23 +35,23 @@ struct ast_dial_channel;
/*! \brief List of options that are applicable either globally or per dialed channel */
enum ast_dial_option {
- AST_DIAL_OPTION_RINGING, /*! Always indicate ringing to caller */
- AST_DIAL_OPTION_ANSWER_EXEC, /*! Execute application upon answer in async mode */
- AST_DIAL_OPTION_MAX, /*! End terminator -- must always remain last */
+ AST_DIAL_OPTION_RINGING, /*!< Always indicate ringing to caller */
+ AST_DIAL_OPTION_ANSWER_EXEC, /*!< Execute application upon answer in async mode */
+ AST_DIAL_OPTION_MAX, /*!< End terminator -- must always remain last */
};
/*! \brief List of return codes for dial run API calls */
enum ast_dial_result {
- AST_DIAL_RESULT_INVALID = 0, /*! Invalid options were passed to run function */
- AST_DIAL_RESULT_FAILED, /*! Attempts to dial failed before reaching critical state */
- AST_DIAL_RESULT_TRYING, /*! Currently trying to dial */
- AST_DIAL_RESULT_RINGING, /*! Dial is presently ringing */
- AST_DIAL_RESULT_PROGRESS, /*! Dial is presently progressing */
- AST_DIAL_RESULT_PROCEEDING, /*! Dial is presently proceeding */
- AST_DIAL_RESULT_ANSWERED, /*! A channel was answered */
- AST_DIAL_RESULT_TIMEOUT, /*! Timeout was tripped, nobody answered */
- AST_DIAL_RESULT_HANGUP, /*! Caller hung up */
- AST_DIAL_RESULT_UNANSWERED, /*! Nobody answered */
+ AST_DIAL_RESULT_INVALID = 0, /*!< Invalid options were passed to run function */
+ AST_DIAL_RESULT_FAILED, /*!< Attempts to dial failed before reaching critical state */
+ AST_DIAL_RESULT_TRYING, /*!< Currently trying to dial */
+ AST_DIAL_RESULT_RINGING, /*!< Dial is presently ringing */
+ AST_DIAL_RESULT_PROGRESS, /*!< Dial is presently progressing */
+ AST_DIAL_RESULT_PROCEEDING, /*!< Dial is presently proceeding */
+ AST_DIAL_RESULT_ANSWERED, /*!< A channel was answered */
+ AST_DIAL_RESULT_TIMEOUT, /*!< Timeout was tripped, nobody answered */
+ AST_DIAL_RESULT_HANGUP, /*!< Caller hung up */
+ AST_DIAL_RESULT_UNANSWERED, /*!< Nobody answered */
};
/*! \brief New dialing structure