Share via


CEL_HEAP_CREATE (Windows CE 5.0)

Send Feedback

This structure identifies the memory heap that was created with HeapCreate.

typedef struct __CEL_HEAP_CREATE {DWORDdwOptions;DWORDdwInitSize;DWORDdwMaxSize;HANDLEhHeap;DWORD dwTID;DWORD dwPID;} CEL_HEAP_CREATE, *PCEL_HEAP_CREATE;

Members

  • dwOptions
    Memory allocations options specified when a heap is created. Corresponds to the flOptions parameter of HeapCreate.
  • dwInitSize
    Initial size of the heap when created. Corresponds to the dwInitialSize parameter of HeapCreate.
  • dwMaxSize
    Maximum size that a heap can grow. Corresponds to the dwMaximumSize parameter of HeapCreate.
  • hHeap
    Handle of the heap that was created.
  • dwTID
    Identifier of the thread that created the heap.
  • dwPID
    Process that owns the thread that created the heap.

Requirements

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

See Also

HeapCreate

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.