HeapAlloc method
Implementation
ffi.Pointer<ffi.Void> HeapAlloc(
ffi.Pointer<ffi.Void> hHeap,
int dwFlags,
int dwBytes,
) {
return (_HeapAlloc ??=
_dylib.lookupFunction<_c_HeapAlloc, _dart_HeapAlloc>('HeapAlloc'))(
hHeap,
dwFlags,
dwBytes,
);
}