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