diff options
Diffstat (limited to 'include/KInterface.h')
-rw-r--r-- | include/KInterface.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/include/KInterface.h b/include/KInterface.h index 19c9268..55137e8 100644 --- a/include/KInterface.h +++ b/include/KInterface.h @@ -100,12 +100,18 @@ public: UINT32 getLastPingValue(); UINT32 getLastNtStatus(); + static bool PageIsFreed(MEMORY_BASIC_INFORMATION& page) { + return (page.Protect & PAGE_NOACCESS) != 0; + } + static bool PageIsPrivateReserved(MEMORY_BASIC_INFORMATION& page) { + return page.Protect == 0; + } SendRecvReturn RecvWait(DWORD timeout = DEFAULT_TIMEOUT_MS); - void StartPingThread(void (__cdecl *onTimeout)(void)); + void StartPingThread(void(__cdecl* onTimeout)(void)); private: SendRecvReturn SendRecvWait(UINT32 type, DWORD timeout = DEFAULT_TIMEOUT_MS); - void PingThread(void (__cdecl *onTimeout)(void)); + void PingThread(void(__cdecl* onTimeout)(void)); PVOID m_shmem = NULL; HANDLE m_kevent = NULL, m_uevent = NULL; |