Changeset 21750 in vbox for trunk/include
- Timestamp:
- Jul 21, 2009 1:08:26 PM (15 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/manifest.h
r21742 r21750 65 65 * @param pTestList List of files & SHA1 sums. 66 66 * @param cTests Number of entries in pTestList 67 * @param p cFileIndexOnFailureA index to pTestList in the67 * @param piFailed A index to pTestList in the 68 68 * VERR_MANIFEST_DIGEST_MISMATCH error case 69 69 * (optional). 70 70 */ 71 RTR3DECL(int) RTManifestVerify(const char *pszManifestFile, PRTMANIFESTTEST pTestList, size_t cTests, size_t *p cFileIndexOnFailure);71 RTR3DECL(int) RTManifestVerify(const char *pszManifestFile, PRTMANIFESTTEST pTestList, size_t cTests, size_t *piFailed); 72 72 73 73 /** … … 80 80 * @param ppszFiles List of files to check SHA1 sums. 81 81 * @param cFiles Number of entries in ppszFiles. 82 * @param p cFileIndexOnFailureA index to ppszFiles in the82 * @param piFailed A index to ppszFiles in the 83 83 * VERR_MANIFEST_DIGEST_MISMATCH error case 84 84 * (optional). 85 85 */ 86 RTR3DECL(int) RTManifestVerifyFiles(const char *pszManifestFile, const char * *ppszFiles, size_t cFiles, size_t *pcFileIndexOnFailure);86 RTR3DECL(int) RTManifestVerifyFiles(const char *pszManifestFile, const char * const *papszFiles, size_t cFiles, size_t *pcFailed); 87 87 88 88 /** … … 97 97 * @param cFiles Number of entries in ppszFiles. 98 98 */ 99 RTR3DECL(int) RTManifestWriteFiles(const char *pszManifestFile, const char * *ppszFiles, size_t cFiles);99 RTR3DECL(int) RTManifestWriteFiles(const char *pszManifestFile, const char * const *papszFiles, size_t cFiles); 100 100 101 101 /** @} */ -
trunk/include/iprt/sha1.h
r21742 r21750 48 48 * @param ppszDigest On success the SHA1 digest. 49 49 */ 50 RTR3DECL(int) RTS HA1Digest(const char *pszFile, char **ppszDigest);50 RTR3DECL(int) RTSha1Digest(const char *pszFile, char **ppszDigest); 51 51 52 52 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.