Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
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 flOptionsparameter of HeapCreate.

dwInitSize

Initial size of the heap when created. Corresponds to the dwInitialSizeparameter of HeapCreate.

dwMaxSize

Maximum size that a heap can grow. Corresponds to the dwMaximumSizeparameter 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

See Also

Reference

HeapCreate