HeapReAlloc method
Implementation
ffi.Pointer<ffi.Void> HeapReAlloc(
ffi.Pointer<ffi.Void> hHeap,
int dwFlags,
ffi.Pointer<ffi.Void> lpMem,
int dwBytes,
) {
return (_HeapReAlloc ??= _dylib
.lookupFunction<_c_HeapReAlloc, _dart_HeapReAlloc>('HeapReAlloc'))(
hHeap,
dwFlags,
lpMem,
dwBytes,
);
}