aboutsummaryrefslogtreecommitdiff
path: root/KMemDriver/Imports.h
diff options
context:
space:
mode:
Diffstat (limited to 'KMemDriver/Imports.h')
-rw-r--r--KMemDriver/Imports.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/KMemDriver/Imports.h b/KMemDriver/Imports.h
index 44f53cc..e0eaa4d 100644
--- a/KMemDriver/Imports.h
+++ b/KMemDriver/Imports.h
@@ -109,4 +109,20 @@ ObReferenceObjectByName(
KPROCESSOR_MODE Access,
PVOID ParseContext,
PVOID* ObjectPtr
+);
+
+NTSTATUS ZwAllocateVirtualMemory(
+ _In_ HANDLE ProcessHandle,
+ _Inout_ PVOID *BaseAddress,
+ _In_ ULONG_PTR ZeroBits,
+ _Inout_ PSIZE_T RegionSize,
+ _In_ ULONG AllocationType,
+ _In_ ULONG Protect
+);
+
+NTSTATUS ZwFreeVirtualMemory(
+ _In_ HANDLE ProcessHandle,
+ _Inout_ PVOID *BaseAddress,
+ _Inout_ PSIZE_T RegionSize,
+ _In_ ULONG FreeType
); \ No newline at end of file