FreeUserPhysicalPages method
Implementation
int FreeUserPhysicalPages(
ffi.Pointer<ffi.Void> hProcess,
ffi.Pointer<ffi.Uint64> NumberOfPages,
ffi.Pointer<ffi.Uint64> PageArray,
) {
return (_FreeUserPhysicalPages ??= _dylib.lookupFunction<
_c_FreeUserPhysicalPages,
_dart_FreeUserPhysicalPages>('FreeUserPhysicalPages'))(
hProcess,
NumberOfPages,
PageArray,
);
}