summaryrefslogtreecommitdiff
path: root/include/osl/module.h
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2017-03-17 21:59:50 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2017-03-17 14:38:39 +0000
commit22750c14f2850281ca5235cc3c0a6d7c8a234fe0 (patch)
tree3625f888883dd4ec643f75ee89524f2f71140344 /include/osl/module.h
parent6bfb7aa4ef09eee32bd47c2f860546329de4ad98 (diff)
osl: use doxygen @retval and remove HTML markup
Change-Id: Ia0d0d6b0805612a26fcb3e1cf2f7d2555f7f98f1 Reviewed-on: https://gerrit.libreoffice.org/35331 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'include/osl/module.h')
-rw-r--r--include/osl/module.h32
1 files changed, 8 insertions, 24 deletions
diff --git a/include/osl/module.h b/include/osl/module.h
index b89c57115e02..fadd573dc0cd 100644
--- a/include/osl/module.h
+++ b/include/osl/module.h
@@ -137,9 +137,8 @@ SAL_DLLPUBLIC oslModule SAL_CALL osl_loadModuleRelativeAscii(
[out] a pointer to a oslModule that is updated with the requested module handle
on success.
- @return
- sal_True if the module handle could be retrieved and has been copied to *pResult.
- sal_False if the module has not been loaded yet.
+ @retval sal_True if the module handle could be retrieved and has been copied to *pResult.
+ @retval sal_False if the module has not been loaded yet.
@see osl_getFunctionSymbol
@see osl_getAsciiFunctionSymbol
@@ -170,13 +169,8 @@ SAL_DLLPUBLIC void* SAL_CALL osl_getSymbol( oslModule Module, rtl_uString *strSy
@param ustrFunctionSymbolName
[in] Name of the function that will be looked up.
- @return
- <dl>
- <dt>Function address.</dt>
- <dd>on success</dd>
- <dt>NULL</dt>
- <dd>lookup failed or the parameter are invalid.</dd>
- </dl>
+ @retval function-address on success
+ @retval NULL lookup failed or the parameter are invalid
@see osl_getSymbol
@see osl_getAsciiFunctionSymbol
@@ -195,13 +189,8 @@ SAL_DLLPUBLIC oslGenericFunction SAL_CALL osl_getFunctionSymbol(
@param pSymbol
[in] Name of the function that will be looked up.
- @return
- <dl>
- <dt>Function address.</dt>
- <dd>on success</dd>
- <dt>NULL</dt>
- <dd>lookup failed or the parameter are invalid.</dd>
- </dl>
+ @retval function-address on success
+ @retval NULL lookup failed or the parameter are invalid
@see osl_getModuleHandle
@see osl_getFunctionSymbol
@@ -229,13 +218,8 @@ SAL_DLLPUBLIC sal_Bool SAL_CALL osl_getModuleURLFromAddress(
@param pustrFunctionURL
[out] receives the URL of the module that is mapped at pf.
- @return
- <dl>
- <dt>sal_True</dt>
- <dd>on success</dd>
- <dt>sal_False</dt>
- <dd>no module can be found at the specified function address or parameter is somewhat invalid.</dd>
- </dl>
+ @retval sal_True on success
+ @retval sal_False no module can be found at the specified function address or parameter is somewhat invalid
@see osl_getModuleURLFromAddress
*/