Share via


CEL_VIRTUAL_ALLOC

This structure is used to identify a memory allocation made by VirtualAlloc.

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

OS Versions: Windows CE 3.0 and later.
Header: Celog.h.

See Also

VirtualAlloc

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.