CEL_HEAP_CREATE
A version of this page is also available for
4/8/2010
This structure identifies the memory heap that was created with HeapCreate.
Syntax
typedef struct __CEL_HEAP_CREATE {
DWORD dwOptions;
DWORD dwInitSize;
DWORD dwMaxSize;
HANDLE hHeap;
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
Header | celog.h |
Windows Embedded CE | Windows CE 3.0 and later |
Windows Mobile | Windows Mobile Version 5.0 and later |