summaryrefslogtreecommitdiff
path: root/include/rtl
diff options
context:
space:
mode:
authorKorrawit Pruegsanusak <detective.conan.1412@gmail.com>2017-10-21 12:03:45 +0700
committerMichael Stahl <mstahl@redhat.com>2017-10-23 13:24:58 +0200
commitadc20182157c604e702a4af4e73e63be614ae6d8 (patch)
tree0c5636b1d3ad36a6855d33e41d6e7591d0846270 /include/rtl
parent3691e3e18c753eb2dc9479b25056c28a11131acf (diff)
correct doxygen syntax
Change-Id: I9e0ae4f9adadf58b99228d64a316d279043151f2 Reviewed-on: https://gerrit.libreoffice.org/43638 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'include/rtl')
-rw-r--r--include/rtl/bootstrap.hxx12
-rw-r--r--include/rtl/cipher.h46
-rw-r--r--include/rtl/crc.h6
3 files changed, 32 insertions, 32 deletions
diff --git a/include/rtl/bootstrap.hxx b/include/rtl/bootstrap.hxx
index 4c1ce0e29a3b..7820ecef3c01 100644
--- a/include/rtl/bootstrap.hxx
+++ b/include/rtl/bootstrap.hxx
@@ -43,7 +43,7 @@ namespace rtl
/** Retrieves a bootstrap parameter
@param sName name of the bootstrap value. case insensitive.
- @param outValue (out parameter). On success contains the value, otherwise
+ @param[out] outValue On success contains the value, otherwise
an empty string.
@return false, if no value could be retrieved, otherwise true
@see rtl_bootstrap_get()
@@ -55,9 +55,9 @@ namespace rtl
/** Retrieves a bootstrap parameter
@param sName name of the bootstrap value. case insensitive.
- @param outValue (out parameter). Contains the value associated with sName.
- @param aDefault if none of the other methods retrieved a value, outValue
- is assigned to a Default.
+ @param[out] outValue Contains the value associated with <code>sName</code>.
+ @param aDefault if none of the other methods retrieved a value,
+ <code>outValue</code> is assigned to <code>aDefault</code>.
@see rtl_bootstrap_get()
*/
@@ -118,14 +118,14 @@ namespace rtl
/** Expands a macro using bootstrap variables.
- @param macro [inout] The macro to be expanded
+ @param[in,out] macro The macro to be expanded
*/
void expandMacrosFrom( ::rtl::OUString & macro ) const
{ rtl_bootstrap_expandMacros_from_handle( _handle, &macro.pData ); }
/** Expands a macro using default bootstrap variables.
- @param macro [inout] The macro to be expanded
+ @param[in,out] macro The macro to be expanded
*/
static void expandMacros( ::rtl::OUString & macro )
{ rtl_bootstrap_expandMacros( &macro.pData ); }
diff --git a/include/rtl/cipher.h b/include/rtl/cipher.h
index 961fb582763f..2b442c2cebd0 100644
--- a/include/rtl/cipher.h
+++ b/include/rtl/cipher.h
@@ -105,8 +105,8 @@ typedef enum __rtl_CipherError rtlCipherError;
@see rtlCipherAlgorithm
@see rtlCipherMode
- @param Algorithm [in] cipher algorithm.
- @param Mode [in] cipher mode.
+ @param[in] Algorithm cipher algorithm.
+ @param[in] Mode cipher mode.
@return Cipher handle, or 0 upon failure.
*/
SAL_DLLPUBLIC rtlCipher SAL_CALL rtl_cipher_create (
@@ -117,13 +117,13 @@ SAL_DLLPUBLIC rtlCipher SAL_CALL rtl_cipher_create (
/** Inititialize a cipher for the given direction.
@see rtlCipherDirection
- @param Cipher [in] cipher handle.
- @param Direction [in] cipher direction.
- @param pKeyData [in] key material buffer.
- @param nKeyLen [in] key material length in bytes.
- @param pArgData [in] initialization vector buffer.
- @param nArgLen [in] initialization vector length in bytes.
- @return rtl_Cipher_E_None upon success.
+ @param[in] Cipher cipher handle.
+ @param[in] Direction cipher direction.
+ @param[in] pKeyData key material buffer.
+ @param[in] nKeyLen key material length in bytes.
+ @param[in] pArgData initialization vector buffer.
+ @param[in] nArgLen initialization vector length in bytes.
+ @retval rtl_Cipher_E_None upon success.
*/
SAL_DLLPUBLIC rtlCipherError SAL_CALL rtl_cipher_init (
rtlCipher Cipher,
@@ -136,12 +136,12 @@ SAL_DLLPUBLIC rtlCipherError SAL_CALL rtl_cipher_init (
@pre Initialized for a compatible cipher direction.
@see rtl_cipher_init()
- @param Cipher [in] cipher handle.
- @param pData [in] plaintext buffer.
- @param nDatLen [in] plaintext length in bytes.
- @param pBuffer [out] ciphertext buffer.
- @param nBufLen [in] ciphertext length in bytes.
- @return rtl_Cipher_E_None upon success.
+ @param[in] Cipher cipher handle.
+ @param[in] pData plaintext buffer.
+ @param[in] nDatLen plaintext length in bytes.
+ @param[out] pBuffer ciphertext buffer.
+ @param[in] nBufLen ciphertext length in bytes.
+ @retval rtl_Cipher_E_None upon success.
*/
SAL_DLLPUBLIC rtlCipherError SAL_CALL rtl_cipher_encode (
rtlCipher Cipher,
@@ -153,12 +153,12 @@ SAL_DLLPUBLIC rtlCipherError SAL_CALL rtl_cipher_encode (
@pre Initialized for a compatible cipher direction.
@see rtl_cipher_init()
- @param Cipher [in] cipher handle.
- @param pData [in] ciphertext buffer.
- @param nDatLen [in] ciphertext length in bytes.
- @param pBuffer [out] plaintext buffer.
- @param nBufLen [in] plaintext length in bytes.
- @return rtl_Cipher_E_None upon success.
+ @param[in] Cipher cipher handle.
+ @param[in] pData ciphertext buffer.
+ @param[in] nDatLen ciphertext length in bytes.
+ @param[out] pBuffer plaintext buffer.
+ @param[in] nBufLen plaintext length in bytes.
+ @retval rtl_Cipher_E_None upon success.
*/
SAL_DLLPUBLIC rtlCipherError SAL_CALL rtl_cipher_decode (
rtlCipher Cipher,
@@ -167,7 +167,7 @@ SAL_DLLPUBLIC rtlCipherError SAL_CALL rtl_cipher_decode (
) SAL_THROW_EXTERN_C();
/** Destroy a cipher handle.
- @param Cipher [in] cipher handle to be destroyed.
+ @param[in] Cipher cipher handle to be destroyed.
@return None. Cipher handle destroyed and invalid.
*/
SAL_DLLPUBLIC void SAL_CALL rtl_cipher_destroy (
@@ -227,7 +227,7 @@ SAL_DLLPUBLIC void SAL_CALL rtl_cipher_destroyBF (
@see rtl_cipher_create()
- @param Mode [in] cipher mode. Must be rtl_Cipher_ModeStream.
+ @param[in] Mode cipher mode. Must be <code>rtl_Cipher_ModeStream</code>.
@return Cipher handle, or 0 upon failure.
*/
SAL_DLLPUBLIC rtlCipher SAL_CALL rtl_cipher_createARCFOUR (
diff --git a/include/rtl/crc.h b/include/rtl/crc.h
index c524593f30fc..272cff0a2e6a 100644
--- a/include/rtl/crc.h
+++ b/include/rtl/crc.h
@@ -33,9 +33,9 @@ extern "C" {
This function evaluates the CRC polynomial 0xEDB88320.
- @param Crc [in] CRC32 over previous data or zero.
- @param Data [in] data buffer.
- @param DatLen [in] data buffer length.
+ @param[in] Crc CRC32 over previous data or zero.
+ @param[in] Data data buffer.
+ @param[in] DatLen data buffer length.
@return new CRC32 value.
*/
SAL_DLLPUBLIC sal_uInt32 SAL_CALL rtl_crc32 (