Changeset 95612 in vbox for trunk/src/VBox/Runtime/include/internal
- Timestamp:
- Jul 13, 2022 12:51:28 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/ldr.h
r94869 r95612 518 518 * @param pMod The module handle. 519 519 * @param enmDigest Which kind of digest. 520 * @param pszDigest Where to store the image digest. 521 * @param cbDigest Size of the buffer @a pszDigest points at. 522 */ 523 DECLCALLBACKMEMBER(int, pfnHashImage,(PRTLDRMODINTERNAL pMod, RTDIGESTTYPE enmDigest, char *pszDigest, size_t cbDigest)); 520 * @param pabHash Where to store the image hash. 521 * @param cbHash Size of the buffer @a pabHash points at. This has 522 * been validated to be at least the required size. 523 */ 524 DECLCALLBACKMEMBER(int, pfnHashImage,(PRTLDRMODINTERNAL pMod, RTDIGESTTYPE enmDigest, uint8_t *pabHash, size_t cbHash)); 524 525 525 526 /**
Note:
See TracChangeset
for help on using the changeset viewer.