progdocs: Fix for Doxygen, the hidden parts.

ASTERISK-29779

Change-Id: If338163488498f65fa7248b60e80299c0a928e4b
This commit is contained in:
Alexander Traud
2021-11-27 20:11:37 +01:00
committed by Kevin Harwell
parent affe7ee879
commit cc025026b7
48 changed files with 120 additions and 382 deletions

View File

@@ -88,7 +88,7 @@ static void optional_api_user_destroy(struct optional_api_user *user)
* \param module Name of the module requesting the API.
*
* \return New \ref optional_api_user.
* \return \c NULL on error.
* \retval NULL on error.
*/
static struct optional_api_user *optional_api_user_create(
ast_optional_fn *optional_ref, ast_optional_fn stub, const char *module)
@@ -129,7 +129,7 @@ static void optional_api_destroy(struct optional_api *api)
*
* \param symname Name of the optional function.
* \return New \ref optional_api.
* \return \c NULL on error.
* \retval NULL on error.
*/
static struct optional_api *optional_api_create(const char *symname)
{
@@ -151,9 +151,9 @@ static struct optional_api *optional_api_create(const char *symname)
/*!
* \brief Gets (or creates) the \ref optional_api for the given function.
*
* \param sysname Name of the function to look up.
* \param symname Name of the function to look up.
* \return Corresponding \ref optional_api.
* \return \c NULL on error.
* \retval NULL on error.
*/
static struct optional_api *get_api(const char *symname)
{