- Timestamp:
- Apr 1, 2019 9:40:16 AM (6 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/win/SUPHardenedVerify-win.h
r76568 r77972 103 103 RTFOFF off; 104 104 /** The file size. */ 105 RTFOFFcbFile;105 uint64_t cbFile; 106 106 /** Flags for the verification callback, SUPHNTVI_F_XXX. */ 107 107 uint32_t fFlags; -
trunk/src/VBox/HostDrivers/Support/win/SUPHardenedVerifyImage-win.cpp
r77820 r77972 302 302 303 303 /** @copydoc RTLDRREADER::pfnSize */ 304 static DECLCALLBACK( RTFOFF) supHardNtViRdrSize(PRTLDRREADER pReader)304 static DECLCALLBACK(uint64_t) supHardNtViRdrSize(PRTLDRREADER pReader) 305 305 { 306 306 PSUPHNTVIRDR pNtViRdr = (PSUPHNTVIRDR)pReader; … … 440 440 pNtViRdr->hEvent = hEvent; 441 441 pNtViRdr->off = 0; 442 pNtViRdr->cbFile = StdInfo.EndOfFile.QuadPart;442 pNtViRdr->cbFile = (uint64_t)StdInfo.EndOfFile.QuadPart; 443 443 pNtViRdr->fFlags = fFlags; 444 444 *ppNtViRdr = pNtViRdr;
Note:
See TracChangeset
for help on using the changeset viewer.