MmMapViewInSystemSpace - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntddk.h

NTSTATUS MmMapViewInSystemSpace(
  PVOID   Section,
  PVOID   *MappedBase,
  PSIZE_T ViewSize
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ntddk-mmmapviewinsystemspace)

MmMapViewInSystemSpace function

Description

The MmMapViewInSystemSpace function maps the specified section into the system's address space.

Parameters

Section

Supplies a pointer to the section to map.

MappedBase

Contains the address where the section was mapped.

ViewSize

Supplies the size of the view to map. If this is specified as zero, the whole section is mapped. Returns the actual size mapped.

Return value

This function returns true if the map view operation was successful.

Remarks

See also

MmUnmapViewInSystemSpace