mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
main: Fix for Doxygen.
ASTERISK-29763 Change-Id: Ib8359e3590a9109eb04a5376559d040e5e21867e
This commit is contained in:
committed by
Friendly Automation
parent
868d2d5e53
commit
20d9158c9c
@@ -965,21 +965,21 @@ enum ast_sorcery_apply_result __ast_sorcery_object_type_insert_wizard(struct ast
|
||||
|
||||
/*! \brief Internal function which creates an object type and inserts a wizard mapping */
|
||||
enum ast_sorcery_apply_result __ast_sorcery_insert_wizard_mapping(struct ast_sorcery *sorcery,
|
||||
const char *object_type_name, const char *module, const char *wizard_type_name,
|
||||
const char *wizard_args, unsigned int caching, int position)
|
||||
const char *type, const char *module, const char *name,
|
||||
const char *data, unsigned int caching, int position)
|
||||
{
|
||||
return __ast_sorcery_object_type_insert_wizard(sorcery, object_type_name, module, wizard_type_name,
|
||||
wizard_args, caching ? AST_SORCERY_WIZARD_APPLY_CACHING : AST_SORCERY_WIZARD_APPLY_NONE,
|
||||
return __ast_sorcery_object_type_insert_wizard(sorcery, type, module, name,
|
||||
data, caching ? AST_SORCERY_WIZARD_APPLY_CACHING : AST_SORCERY_WIZARD_APPLY_NONE,
|
||||
position, NULL, NULL);
|
||||
}
|
||||
|
||||
/*! \brief Internal function which creates an object type and adds a wizard mapping */
|
||||
enum ast_sorcery_apply_result __ast_sorcery_apply_wizard_mapping(struct ast_sorcery *sorcery,
|
||||
const char *object_type_name, const char *module, const char *wizard_type_name,
|
||||
const char *wizard_args, unsigned int caching)
|
||||
const char *type, const char *module, const char *name,
|
||||
const char *data, unsigned int caching)
|
||||
{
|
||||
return __ast_sorcery_insert_wizard_mapping(sorcery, object_type_name, module, wizard_type_name,
|
||||
wizard_args, caching, AST_SORCERY_WIZARD_POSITION_LAST);
|
||||
return __ast_sorcery_insert_wizard_mapping(sorcery, type, module, name,
|
||||
data, caching, AST_SORCERY_WIZARD_POSITION_LAST);
|
||||
}
|
||||
|
||||
enum ast_sorcery_apply_result __ast_sorcery_apply_config(struct ast_sorcery *sorcery, const char *name, const char *module)
|
||||
|
Reference in New Issue
Block a user