HeapReAlloc function kernel32
Retrieves information about the specified heap.
LPVOID HeapReAlloc(
HANDLE hHeap,
DWORD dwFlags,
_Frees_ptr_opt_ LPVOID lpMem,
SIZE_T dwBytes
);
Implementation
Pointer HeapReAlloc(int hHeap, int dwFlags, Pointer lpMem, int dwBytes) =>
_HeapReAlloc(hHeap, dwFlags, lpMem, dwBytes);