LocalReAlloc method

Pointer<Void> LocalReAlloc(
  1. Pointer<Void> hMem,
  2. int uBytes,
  3. int uFlags
)

Implementation

ffi.Pointer<ffi.Void> LocalReAlloc(
  ffi.Pointer<ffi.Void> hMem,
  int uBytes,
  int uFlags,
) {
  return (_LocalReAlloc ??= _dylib
      .lookupFunction<_c_LocalReAlloc, _dart_LocalReAlloc>('LocalReAlloc'))(
    hMem,
    uBytes,
    uFlags,
  );
}