This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DriverInformation_t NVBase; | |
uint32_t UuidValidOffset = 0; | |
// Get nvlddmkm.sys information. | |
if (!Utils::GetDriverInformation(H("nvlddmkm.sys"), NVBase)) | |
{ | |
DBG("Could not find nvlddmkm.sys\n"); | |
return 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Module Name: | |
* WorkingSetWatch.cpp | |
* | |
* Abstract: | |
* Tracks page faults that occur within the process. | |
* | |
* NOTE: This is not compatible with Wow64 and must be run as a 64-bit | |
* program on x64 and a 32-bit program on x86. | |
* |