HeapReAlloc method

Pointer<Void> HeapReAlloc(
  1. Pointer<Void> hHeap,
  2. int dwFlags,
  3. Pointer<Void> lpMem,
  4. int dwBytes,
)

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,
  );
}