MapViewOfFileNuma2 method

Pointer<Void> MapViewOfFileNuma2(
  1. Pointer<Void> FileMappingHandle,
  2. Pointer<Void> ProcessHandle,
  3. int Offset,
  4. Pointer<Void> BaseAddress,
  5. int ViewSize,
  6. int AllocationType,
  7. int PageProtection,
  8. int PreferredNode,
)

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(
    FileMappingHandle,
    ProcessHandle,
    Offset,
    BaseAddress,
    ViewSize,
    AllocationType,
    PageProtection,
    PreferredNode,
  );
}