VirtualBox

Changeset 21754 in vbox


Ignore:
Timestamp:
Jul 21, 2009 3:18:06 PM (16 years ago)
Author:
vboxsync
Message:

Runtime: fix doxygen documentation

Location:
trunk/include/iprt
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/manifest.h

    r21751 r21754  
    3636RT_C_DECLS_BEGIN
    3737
    38 /** @group grp_rt_manifest    RTManifest - Manifest file creation and checking.
     38/** @defgroup grp_rt_manifest    RTManifest - Manifest file creation and checking
    3939 * @ingroup grp_rt
    4040 * @{
     
    4242
    4343/**
    44  * Input structure for RTManifestVerify which contains the filename & the SHA1
    45  * digest.
     44 * Input structure for RTManifestVerify() which contains the filename & the
     45 * SHA1 digest.
    4646 */
    4747typedef struct RTMANIFESTTEST
    4848{
    49     char *pszTestFile; /** The filename */
    50     char *pszTestDigest; /** The SHA1 digest of the file */
     49    /** The filename. */
     50    char *pszTestFile;
     51    /** The SHA1 digest of the file. */
     52    char *pszTestDigest;
    5153} RTMANIFESTTEST;
    5254/** Pointer to the input structure. */
     
    5658 * Verify the given SHA1 digests to the entries in the manifest file.
    5759 *
    58  * Please note that not only the various digest have to much, but the filenames
    59  * as well. If there are more or even less files listed in the manifest file
    60  * than provided by pTestList, VERR_MANIFEST_FILE_MISMATCH will be returned.
     60 * Please note that not only the various digest have to match, but the
     61 * filenames as well. If there are more or even less files listed in the
     62 * manifest file than provided by paTests, VERR_MANIFEST_FILE_MISMATCH will be
     63 * returned.
    6164 *
    6265 * @returns VBox status code.
    6366 *
    6467 * @param   pszManifestFile      Filename of the manifest file to verify.
    65  * @param   pTestList            List of files & SHA1 sums.
    66  * @param   cTests               Number of entries in pTestList
    67  * @param   piFailed             A index to pTestList in the
     68 * @param   paTests              Array of files & SHA1 sums.
     69 * @param   cTests               Number of entries in paTests.
     70 * @param   piFailed             A index to paTests in the
    6871 *                               VERR_MANIFEST_DIGEST_MISMATCH error case
    6972 *                               (optional).
    7073 */
    71 RTR3DECL(int) RTManifestVerify(const char *pszManifestFile, PRTMANIFESTTEST pTestList, size_t cTests, size_t *piFailed);
     74RTR3DECL(int) RTManifestVerify(const char *pszManifestFile, PRTMANIFESTTEST paTests, size_t cTests, size_t *piFailed);
    7275
    7376/**
    74  * This is analogous to function RTManifestVerify, but calculates the SHA1 sums
    75  * of the given files itself.
     77 * This is analogous to function RTManifestVerify(), but calculates the SHA1
     78 * sums of the given files itself.
    7679 *
    7780 * @returns VBox status code.
    7881 *
    7982 * @param   pszManifestFile      Filename of the manifest file to verify.
    80  * @param   ppszFiles            List of files to check SHA1 sums.
     83 * @param   papszFiles           Array of files to check SHA1 sums.
    8184 * @param   cFiles               Number of entries in ppszFiles.
    8285 * @param   piFailed             A index to ppszFiles in the
     
    9497 *
    9598 * @param   pszManifestFile      Filename of the manifest file to create.
    96  * @param   ppszFiles            List of files to create SHA1 sums for.
    97  * @param   cFiles               Number of entries in ppszFiles.
     99 * @param   papszFiles           Array of files to create SHA1 sums for.
     100 * @param   cFiles               Number of entries in papszFiles.
    98101 */
    99102RTR3DECL(int) RTManifestWriteFiles(const char *pszManifestFile, const char * const *papszFiles, size_t cFiles);
  • trunk/include/iprt/s3.h

    r20374 r21754  
    3636RT_C_DECLS_BEGIN
    3737
    38 /** @group grp_rt_s3    RTS3 - Simple Storage Service (S3) Communication API
     38/** @defgroup grp_rt_s3    RTS3 - Simple Storage Service (S3) Communication API
    3939 * @ingroup grp_rt
    4040 * @{
  • trunk/include/iprt/sha1.h

    r21750 r21754  
    3535RT_C_DECLS_BEGIN
    3636
    37 /** @group grp_rt_sha1digest   RTSHA1Digest - SHA1 digest creation
     37/** @defgroup grp_rt_sha1digest   RTSha1Digest - SHA1 digest creation
    3838 * @ingroup grp_rt
    3939 * @{
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette