VirtualAllocEx (KERNEL32.@)
LPVOID VirtualAllocEx ( HANDLE hProcess, LPVOID addr, SIZE_T size, DWORD type, DWORD protect )
Seems to be just as VirtualAlloc, but with process handle.
hProcess | [In] | Handle to process to do mem operation. |
addr | [In] | Address of region to reserve or commit. |
size | [In] | Size of region. |
type | [In] | Type of allocation. |
protect | [In] | Type of access protection. |
Success: Base address of allocated region of pages.
Failure: NULL.
Defined in "winbase.h".
Implemented in "dlls/kernel/virtual.c". source.winehq.org/source/dlls/kernel/virtual.c
Copyright © 2006 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Oct 2006.