CEL_VIRTUAL_ALLOC (Compact 2013)

3/28/2014

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
    Reserved.

Requirements

Header

celog.h

See Also

Reference

CeLog Event Tracking Structures
VirtualAlloc