RtlReAllocateHeap (NTDLL.@)
PVOID RtlReAllocateHeap ( HANDLE heap, ULONG flags, PVOID ptr, SIZE_T size )
Change the size of a memory block allocated with RtlAllocateHeap.
heap | [In] | Heap that block was allocated from. |
flags | [In] | HEAP_ flags from "winnt.h". |
ptr | [In] | Block to resize. |
size | [In] | Size of the memory block to allocate. |
Success: A pointer to the resized block (which may be different).
Failure: NULL.
Defined in "winternl.h".
Implemented in "dlls/ntdll/heap.c". source.winehq.org/source/dlls/ntdll/heap.c
Debug channel "heap".
Copyright © 2006 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Oct 2006.