Windows.MapViewOfFile2 C# (CSharp) 메소드

MapViewOfFile2() 개인적인 메소드

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
리턴 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)));
    }