Share via


CEL_VIRTUAL_ALLOC (Windows Embedded CE 6.0)

1/6/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

See Also

Reference

CeLog Event Tracking Structures
VirtualAlloc