CEL_HEAP_CREATE
This structure identifies the memory heap that was created with HeapCreate.
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
OS Versions: Windows CE 3.0 and later.
Header: Celog.h.
See Also
Last updated on Wednesday, April 13, 2005
© 2005 Microsoft Corporation. All rights reserved.