| 380 | namespace MemoryManagement { |
| 381 | _IRQL_requires_max_(PASSIVE_LEVEL) |
| 382 | NTSTATUS AllocateVirtualMemory(HANDLE hProcess, SIZE_T Size, ULONG Protect, IN OUT PVOID* BaseAddress) { |
| 383 | return ZwAllocateVirtualMemory(hProcess, BaseAddress, 0, &Size, MEM_COMMIT, Protect); |
| 384 | } |
| 385 | |
| 386 | _IRQL_requires_max_(PASSIVE_LEVEL) |
| 387 | PVOID AllocateVirtualMemory(HANDLE hProcess, SIZE_T Size, ULONG Protect) { |