MapViewOfFile2 method
Implementation
ffi.Pointer<ffi.Void> MapViewOfFile2(
ffi.Pointer<ffi.Void> FileMappingHandle,
ffi.Pointer<ffi.Void> ProcessHandle,
int Offset,
ffi.Pointer<ffi.Void> BaseAddress,
int ViewSize,
int AllocationType,
int PageProtection,
) {
return (_MapViewOfFile2 ??=
_dylib.lookupFunction<_c_MapViewOfFile2, _dart_MapViewOfFile2>(
'MapViewOfFile2'))(
FileMappingHandle,
ProcessHandle,
Offset,
BaseAddress,
ViewSize,
AllocationType,
PageProtection,
);
}