summaryrefslogtreecommitdiff
path: root/res/ari/resource_mailboxes.h
diff options
context:
space:
mode:
authorJonathan Rose <jrose@digium.com>2014-07-02 21:13:46 +0000
committerJonathan Rose <jrose@digium.com>2014-07-02 21:13:46 +0000
commita69e0cd32a208d077a3b0fcb2d7d21846a711a89 (patch)
treebcf8730b99e2a90fbe0aa8d88fdadb84ba378cd7 /res/ari/resource_mailboxes.h
parent56a6cd0fa80b398b08995bccabe45e03eda049d1 (diff)
ARI: Remove unnecessary \briefs from automatically generated documentation
Review: https://reviewboard.asterisk.org/r/3440/ ........ Merged revisions 412653 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@417770 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/ari/resource_mailboxes.h')
-rw-r--r--res/ari/resource_mailboxes.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/res/ari/resource_mailboxes.h b/res/ari/resource_mailboxes.h
index 8627321db..bd83777fe 100644
--- a/res/ari/resource_mailboxes.h
+++ b/res/ari/resource_mailboxes.h
@@ -39,7 +39,7 @@
#include "asterisk/ari.h"
-/*! \brief Argument struct for ast_ari_mailboxes_list() */
+/*! Argument struct for ast_ari_mailboxes_list() */
struct ast_ari_mailboxes_list_args {
};
/*!
@@ -50,9 +50,9 @@ struct ast_ari_mailboxes_list_args {
* \param[out] response HTTP response
*/
void ast_ari_mailboxes_list(struct ast_variable *headers, struct ast_ari_mailboxes_list_args *args, struct ast_ari_response *response);
-/*! \brief Argument struct for ast_ari_mailboxes_get() */
+/*! Argument struct for ast_ari_mailboxes_get() */
struct ast_ari_mailboxes_get_args {
- /*! \brief Name of the mailbox */
+ /*! Name of the mailbox */
const char *mailbox_name;
};
/*!
@@ -63,13 +63,13 @@ struct ast_ari_mailboxes_get_args {
* \param[out] response HTTP response
*/
void ast_ari_mailboxes_get(struct ast_variable *headers, struct ast_ari_mailboxes_get_args *args, struct ast_ari_response *response);
-/*! \brief Argument struct for ast_ari_mailboxes_update() */
+/*! Argument struct for ast_ari_mailboxes_update() */
struct ast_ari_mailboxes_update_args {
- /*! \brief Name of the mailbox */
+ /*! Name of the mailbox */
const char *mailbox_name;
- /*! \brief Count of old messages in the mailbox */
+ /*! Count of old messages in the mailbox */
int old_messages;
- /*! \brief Count of new messages in the mailbox */
+ /*! Count of new messages in the mailbox */
int new_messages;
};
/*!
@@ -91,9 +91,9 @@ int ast_ari_mailboxes_update_parse_body(
* \param[out] response HTTP response
*/
void ast_ari_mailboxes_update(struct ast_variable *headers, struct ast_ari_mailboxes_update_args *args, struct ast_ari_response *response);
-/*! \brief Argument struct for ast_ari_mailboxes_delete() */
+/*! Argument struct for ast_ari_mailboxes_delete() */
struct ast_ari_mailboxes_delete_args {
- /*! \brief Name of the mailbox */
+ /*! Name of the mailbox */
const char *mailbox_name;
};
/*!