mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
MMerge 34827 from ros-amd64-bringup branch:
- fix parameter types of NtAllocateVirtualMemory and NtFreeVirtualMemory svn path=/trunk/; revision=35713
This commit is contained in:
parent
89d2d4d5bc
commit
50eb47c31e
1 changed files with 2 additions and 2 deletions
|
@ -523,7 +523,7 @@ NTSTATUS STDCALL
|
|||
NtAllocateVirtualMemory(IN HANDLE ProcessHandle,
|
||||
IN OUT PVOID* UBaseAddress,
|
||||
IN ULONG ZeroBits,
|
||||
IN OUT PULONG URegionSize,
|
||||
IN OUT PSIZE_T URegionSize,
|
||||
IN ULONG AllocationType,
|
||||
IN ULONG Protect)
|
||||
/*
|
||||
|
@ -900,7 +900,7 @@ MmFreeVirtualMemory(PEPROCESS Process,
|
|||
NTSTATUS STDCALL
|
||||
NtFreeVirtualMemory(IN HANDLE ProcessHandle,
|
||||
IN PVOID* PBaseAddress,
|
||||
IN PULONG PRegionSize,
|
||||
IN PSIZE_T PRegionSize,
|
||||
IN ULONG FreeType)
|
||||
/*
|
||||
* FUNCTION: Frees a range of virtual memory
|
||||
|
|
Loading…
Reference in a new issue