CEL_VIRTUAL_ALLOC
A version of this page is also available for
4/8/2010
This structure is used to identify a memory allocation made by VirtualAlloc.
Syntax
typedef struct __CEL_VIRTUAL_ALLOC {
DWORD dwResult;
DWORD dwAddress;
DWORD dwSize;
DWORD dwType;
DWORD dwProtect;
BYTE bReserved[0];
} CEL_VIRTUAL_ALLOC, *PCEL_VIRTUAL_ALLOC;
Members
- dwResult
Pointer that was returned by VirtualAlloc.
- dwAddress
Corresponds to the lpAddress parameter of VirtualAlloc.
- dwSize
Corresponds to the dwSize parameter of VirtualAlloc.
- dwType
Corresponds to the flAllocationType parameter of VirtualAlloc.
- dwProtect
Corresponds to the flProtect parameter of VirtualAlloc.
- bReserved
Array reserved for future use.
Requirements
Header | celog.h |
Windows Embedded CE | Windows CE 3.0 and later |
Windows Mobile | Windows Mobile Version 5.0 and later |