RtlCreateHeap (NTDLL.@)
HANDLE RtlCreateHeap ( ULONG flags, PVOID addr, SIZE_T totalSize, SIZE_T commitSize, PVOID unknown, PRTL_HEAP_DEFINITION definition )
Create a new Heap.
flags | [In] | HEAP_ flags from "winnt.h". |
addr | [In] | Desired base address. |
totalSize | [In] | Total size of the heap, or 0 for a growable heap. |
commitSize | [In] | Amount of heap space to commit. |
unknown | [In] | Not yet understood. |
definition | [In] | Heap definition. |
Success: A HANDLE to the newly created heap.
Failure: a NULL HANDLE.
Defined in "winternl.h".
Implemented in "dlls/ntdll/heap.c". source.winehq.org/source/dlls/ntdll/heap.c
Debug channel "heap".
Copyright © 2008 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2008.