AllocateUserPhysicalPages method
Implementation
int AllocateUserPhysicalPages(
ffi.Pointer<ffi.Void> hProcess,
ffi.Pointer<ffi.Uint64> NumberOfPages,
ffi.Pointer<ffi.Uint64> PageArray,
) {
return (_AllocateUserPhysicalPages ??= _dylib.lookupFunction<
_c_AllocateUserPhysicalPages,
_dart_AllocateUserPhysicalPages>('AllocateUserPhysicalPages'))(
hProcess,
NumberOfPages,
PageArray,
);
}