This file contains hidden or 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
| // Original source link https://twitter.com/hFireF0X/status/887930221466443776 | |
| // If you are here from any other link - do know that they just steal original info without giving any credit to source | |
| // This bug has been fixed in 16273 public build. | |
| #include "global.h" | |
| HINSTANCE g_hInstance; | |
| HANDLE g_ConOut = NULL; | |
| BOOL g_ConsoleOutput = FALSE; | |
| WCHAR g_BE = 0xFEFF; |
This file contains hidden or 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
| #include <windows.h> | |
| #include <winnt.h> | |
| #include <winternl.h> | |
| #include <pshpack8.h> | |
| typedef struct { | |
| DWORD dwType; | |
| LPCSTR szName; | |
| DWORD dwThreadID; | |
| DWORD dwFlags; |
This file contains hidden or 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. | |
| * |
OlderNewer