MapViewOfFileNuma2 method
Implementation
ffi.Pointer<ffi.Void> MapViewOfFileNuma2(
ffi.Pointer<ffi.Void> FileMappingHandle,
ffi.Pointer<ffi.Void> ProcessHandle,
int Offset,
ffi.Pointer<ffi.Void> BaseAddress,
int ViewSize,
int AllocationType,
int PageProtection,
int PreferredNode,
) {
return (_MapViewOfFileNuma2 ??=
_dylib.lookupFunction<_c_MapViewOfFileNuma2, _dart_MapViewOfFileNuma2>(
'MapViewOfFileNuma2'))(
FileMappingHandle,
ProcessHandle,
Offset,
BaseAddress,
ViewSize,
AllocationType,
PageProtection,
PreferredNode,
);
}