mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-16 14:58:25 +00:00
progdocs: Fix grouping for latest Doxygen.
Since Doxygen 1.8.16, a special comment block is required. Otherwise (pure C comment), the group command is ignored. Additionally, several unbalanced group commands were fixed. ASTERISK-29732 Change-Id: I780ed8e0e8acdbdd8f8b75fb7baf5ef657af7a3f
This commit is contained in:
committed by
Kevin Harwell
parent
6296f645a2
commit
0398daf4cb
16
main/mwi.c
16
main/mwi.c
@@ -25,14 +25,16 @@
|
||||
#include "asterisk/mwi.h"
|
||||
#include "asterisk/stasis_channels.h"
|
||||
|
||||
/*
|
||||
* @{ \brief Define \ref stasis topic objects
|
||||
/*!
|
||||
* \brief Define \ref stasis topic objects
|
||||
* @{
|
||||
*/
|
||||
static struct stasis_topic *mwi_topic_all;
|
||||
static struct stasis_cache *mwi_state_cache;
|
||||
static struct stasis_caching_topic *mwi_topic_cached;
|
||||
static struct stasis_topic_pool *mwi_topic_pool;
|
||||
/* @} */
|
||||
|
||||
/*! @} */
|
||||
|
||||
/*! \brief Convert a MWI \ref stasis_message to a \ref ast_event */
|
||||
static struct ast_event *mwi_to_event(struct stasis_message *message)
|
||||
@@ -66,13 +68,15 @@ static struct ast_event *mwi_to_event(struct stasis_message *message)
|
||||
return event;
|
||||
}
|
||||
|
||||
/*
|
||||
* @{ \brief Define \ref stasis message types for MWI
|
||||
/*!
|
||||
* \brief Define \ref stasis message types for MWI
|
||||
* @{
|
||||
*/
|
||||
STASIS_MESSAGE_TYPE_DEFN(ast_mwi_state_type,
|
||||
.to_event = mwi_to_event, );
|
||||
STASIS_MESSAGE_TYPE_DEFN(ast_mwi_vm_app_type);
|
||||
/* @} */
|
||||
|
||||
/*! @} */
|
||||
|
||||
static void mwi_state_dtor(void *obj)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user