AllocateUserPhysicalPages method

int AllocateUserPhysicalPages(
  1. Pointer<Void> hProcess,
  2. Pointer<Uint64> NumberOfPages,
  3. Pointer<Uint64> PageArray
)

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