aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/module.h
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-09 16:24:07 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-09 16:24:07 +0000
commitf1898a71f11389c69333a2d3ab5ceb5ca4f252d0 (patch)
treecbee3b6bd1df69ca7b222c47ef446c7f204283a0 /include/asterisk/module.h
parent9a07e634fda5a8805e32953516a6271b1fb73904 (diff)
various doxygen fixes
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@26170 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/module.h')
-rw-r--r--include/asterisk/module.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index 1b1e434a6..2b94bae26 100644
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -77,8 +77,7 @@ int ast_load_resource(const char *resource_name);
/*!
* \brief Unloads a module.
* \param resource_name The name of the module to unload.
- * \param force The force flag. This should be set using one of the AST_FORCE*
- * flags.
+ * \param unload_mode The force flag. This should be set using one of the AST_FORCE flags.
*
* This function unloads a module. It will only unload modules that are not in
* use (usecount not zero), unless #AST_FORCE_FIRM or #AST_FORCE_HARD is
@@ -177,9 +176,8 @@ void ast_hangup_localusers(struct module_symbols *);
* whose functions are exported through fields of a "struct module_symbol";
*
* Modules exporting extra symbols (data or functions), should list
- * them into an array of struct symbol_entry: \r
+ * them into an array of struct symbol_entry:
* struct symbol_entry exported_symbols[]
- * \r
* of symbols, with a NULL name on the last entry
*
* Functions should be added with MOD_FUNC(name),