diff options
Diffstat (limited to 'include/KInterface.h')
-rw-r--r-- | include/KInterface.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/KInterface.h b/include/KInterface.h index 55137e8..db2f40d 100644 --- a/include/KInterface.h +++ b/include/KInterface.h @@ -43,7 +43,6 @@ public: PKERNEL_WRITE_REQUEST result); bool VAlloc(HANDLE targetPID, PVOID* address, SIZE_T* size, ULONG protection); bool VFree(HANDLE targetPID, PVOID address, SIZE_T size); - bool VUnlink(HANDLE targetPID, PVOID address); bool MtInit() { std::unique_lock<std::mutex> lck(m_jobLock); @@ -89,10 +88,6 @@ public: std::unique_lock<std::mutex> lck(m_jobLock); return VFree(targetPID, address, size); } - bool MtVUnlink(HANDLE targetPID, PVOID address) { - std::unique_lock<std::mutex> lck(m_jobLock); - return VUnlink(targetPID, address); - } PVOID getBuffer(); HANDLE getKHandle(); |