NtAllocateVirtualMemory

[DllImport("ntdll.dll", SetLastError = true)]
public static extern int NtAllocateVirtualMemory(
   IntPtr ProcessHandle,
   ref IntPtr BaseAddress,
   uint ZeroBits,
   ref uint RegionSize,
   uint AllocationType,
   uint Protect
);

Microsoft documentation: Link

Last updated