Windows.MapViewOfFile2 C# (CSharp) Method

MapViewOfFile2() private method

private MapViewOfFile2 ( HANDLE FileMappingHandle, HANDLE ProcessHandle, ulong Offset, void* BaseAddress, nuint ViewSize, uint AllocationType, uint PageProtection ) : void*
FileMappingHandle HANDLE
ProcessHandle HANDLE
Offset ulong
BaseAddress void*
ViewSize nuint
AllocationType uint
PageProtection uint
return void*
    public static void* MapViewOfFile2(HANDLE FileMappingHandle, HANDLE ProcessHandle, [NativeTypeName("ULONG64")] ulong Offset, [NativeTypeName("PVOID")] void* BaseAddress, [NativeTypeName("SIZE_T")] nuint ViewSize, [NativeTypeName("ULONG")] uint AllocationType, [NativeTypeName("ULONG")] uint PageProtection)
    {
        return MapViewOfFileNuma2(FileMappingHandle, ProcessHandle, Offset, BaseAddress, ViewSize, AllocationType, PageProtection, unchecked((uint)(-1)));
    }