MapViewOfFile3 method
Implementation
ffi.Pointer<ffi.Void> MapViewOfFile3(
ffi.Pointer<ffi.Void> FileMapping,
ffi.Pointer<ffi.Void> Process,
ffi.Pointer<ffi.Void> BaseAddress,
int Offset,
int ViewSize,
int AllocationType,
int PageProtection,
ffi.Pointer<PMEM_EXTENDED_PARAMETER> ExtendedParameters,
int ParameterCount,
) {
return (_MapViewOfFile3 ??=
_dylib.lookupFunction<_c_MapViewOfFile3, _dart_MapViewOfFile3>(
'MapViewOfFile3'))(
FileMapping,
Process,
BaseAddress,
Offset,
ViewSize,
AllocationType,
PageProtection,
ExtendedParameters,
ParameterCount,
);
}