progdocs: Fix for Doxygen, the hidden parts.

ASTERISK-29779

Change-Id: If338163488498f65fa7248b60e80299c0a928e4b
This commit is contained in:
Alexander Traud
2021-11-28 11:29:53 +01:00
committed by Kevin Harwell
parent 0398daf4cb
commit 3489f926e7
48 changed files with 121 additions and 381 deletions

View File

@@ -4527,7 +4527,7 @@ static void build_mapping(const char *name, const char *value)
ast_log(LOG_WARNING, "Expected at least %d arguments in map, but got only %d\n", 4, x);
}
/* \note Called with the peers list already locked */
/*! \note Called with the peers list already locked */
static int do_register(const void *data)
{
struct dundi_ie_data ied;

View File

@@ -174,11 +174,12 @@ static int lua_pbx_findapp(lua_State *L)
* lua, don't call directly)
*
* \param L the lua_State to use
* \return nothing
*
* This funciton is executed as the '()' operator for apps accessed through the
* 'app' table.
*
* \return LUA error
*
* \code
* app.playback('demo-congrats')
* \endcode
@@ -293,6 +294,8 @@ static int lua_pbx_exec(lua_State *L)
* 'get()' function in the following example as would be seen in
* extensions.lua.
*
* \return LUA error
*
* \code
* channel.variable:get()
* \endcode
@@ -353,6 +356,8 @@ static int lua_get_variable_value(lua_State *L)
* This function is the 'set()' function in the following example as would be
* seen in extensions.lua.
*
* \return LUA error
*
* \code
* channel.variable:set("value")
* \endcode