SectionInherit Enumeration

Specifies how the view of a section object is to be shared with child processes when calling NtMapViewOfSection(IntPtr, SafeProcessHandle, IntPtr, IntPtr, IntPtr, Int64, UIntPtr, SectionInherit, MemoryAllocationType, MemoryProtectionOptions) function.

Definition

Namespace: DevCase.Win32.Enums
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public enum SectionInherit

Remarks

Members

ViewShare 1 The view of the section will be mapped into any child processes that are created in the future.
ViewUnmap 2 The view of the section will not be mapped into child processes.

See Also