diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-09-18 21:35:36 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-09-18 21:35:36 +0200 |
commit | badca5036cd02f8c6049e9eaed7942ef2ed2b100 (patch) | |
tree | 4f9959c59f5b8802d9629364ac3bce5d1d823ed6 /include | |
parent | 829c4ce86b4fd062670e1a1e679117d55b7d4109 (diff) |
added VAlloc, VFree and VUnlink in user space library MemDriverLib
Diffstat (limited to 'include')
-rw-r--r-- | include/KInterface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/KInterface.h b/include/KInterface.h index 7f485a6..1149fd3 100644 --- a/include/KInterface.h +++ b/include/KInterface.h @@ -37,6 +37,9 @@ public: PKERNEL_READ_REQUEST result); bool WPM(HANDLE targetPID, PVOID address, BYTE *buf, SIZE_T size, 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); PVOID getBuffer(); HANDLE getKHandle(); |