diff options
author | segfault <toni@impl.cc> | 2021-04-23 13:16:47 +0200 |
---|---|---|
committer | segfault <toni@impl.cc> | 2021-04-23 13:16:47 +0200 |
commit | efdfbef8a67467fac3d19eaf036963cdbece59e6 (patch) | |
tree | 8b5f1b3fe4194f6e623250b94490b8a2c31ed9ba /include/KInterface.h | |
parent | 791a8c5475e2291ff2c2526a1468ff42fc0328c8 (diff) |
Removed unused / unstable / untested features.
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(); |