Changeset 34449 in vbox for trunk/include/iprt
- Timestamp:
- Nov 29, 2010 10:46:43 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 68223
- Location:
- trunk/include/iprt
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/manifest.h
r34435 r34449 270 270 271 271 /** 272 * Reads in a "standard" manifest. 273 * 274 * This reads the format used by OVF, the distinfo in FreeBSD ports, and 275 * others. 276 * 277 * @returns IPRT status code. 278 * @param hManifest The handle to the manifest where to add the 279 * manifest that's read in. 280 * @param hVfsIos The I/O stream to read the manifest from. 281 * @param pszErr Where to return extended error info on failure. 282 * Optional. 283 * @param cbErr The size of the buffer @a pszErr points to. 284 */ 285 RTDECL(int) RTManifestReadStandardEx(RTMANIFEST hManifest, RTVFSIOSTREAM hVfsIos, char *pszErr, size_t cbErr); 286 287 /** 272 288 * Writes a "standard" manifest. 273 289 * -
trunk/include/iprt/md5.h
r33540 r34449 38 38 /** @deprecated Use RTMD5_HASH_SIZE. */ 39 39 #define RTMD5HASHSIZE RTMD5_HASH_SIZE 40 /** Size of a MD5 hash. */ 41 #define RTMD5_STRING_LEN 32 40 /** The length of a MD5 digest string. The terminator is not included. */ 41 #define RTMD5_DIGEST_LEN 32 42 /** Size of a MD5 hash. 43 * @deprecated Use RTMD5_DIGEST_LEN */ 44 #define RTMD5_STRING_LEN RTMD5_DIGEST_LEN 42 45 43 46 /** -
trunk/include/iprt/sha.h
r33540 r34449 39 39 #define RTSHA1_HASH_SIZE 20 40 40 /** The length of a SHA-1 digest string. The terminator is not included. */ 41 #define RTSHA1_DIGEST_LEN (40)41 #define RTSHA1_DIGEST_LEN 40 42 42 43 43 /**
Note:
See TracChangeset
for help on using the changeset viewer.