MapViewOfFile3 method

Pointer<Void> MapViewOfFile3(
  1. Pointer<Void> FileMapping,
  2. Pointer<Void> Process,
  3. Pointer<Void> BaseAddress,
  4. int Offset,
  5. int ViewSize,
  6. int AllocationType,
  7. int PageProtection,
  8. Pointer<MEM_EXTENDED_PARAMETER> ExtendedParameters,
  9. int ParameterCount,
)

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<MEM_EXTENDED_PARAMETER> ExtendedParameters,
  int ParameterCount,
) {
  return _MapViewOfFile3(
    FileMapping,
    Process,
    BaseAddress,
    Offset,
    ViewSize,
    AllocationType,
    PageProtection,
    ExtendedParameters,
    ParameterCount,
  );
}