NtMapViewOfSection (ntdll)
Last changed: -186.136.223.176

.
Summary
The NtMapViewOfSection routine maps a view of a section into the virtual address space of a subject process.

C# Signature:

[DllImport("ntdll.dll", SetLastError=true)]
static extern uint NtMapViewOfSection(
    IntPtr SectionHandle,
    IntPtr ProcessHandle,
    IntPtr BaseAddress,
    UIntPtr ZeroBits,
    UIntPtr CommitSize,
    ulong SectionOffset,
    UIntPtr ViewSize,
    uint InheritDisposition,
    uint AllocationType,
    uint Win32Protect);

VB Signature:

Declare Function NtMapViewOfSection Lib "ntdll.dll" (TODO) As TODO

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation