GlobalReAlloc method
Implementation
ffi.Pointer<ffi.Void> GlobalReAlloc(
ffi.Pointer<ffi.Void> hMem,
int dwBytes,
int uFlags,
) {
return (_GlobalReAlloc ??=
_dylib.lookupFunction<_c_GlobalReAlloc, _dart_GlobalReAlloc>(
'GlobalReAlloc'))(
hMem,
dwBytes,
uFlags,
);
}