MEMORY_BASIC_INFORMATION (Structures)
Last changed: -77.125.116.83

.
Summary
This structure contains information about a range of pages in the virtual memory of a process.

C# Definition:

struct MEMORY_BASIC_INFORMATION {
    public IntPtr BaseAddress;
    public IntPtr AllocationBase;
    public UInt32 AllocationProtect;
    public IntPtr RegionSize;
    public UInt32 State;
    public UInt32 Protect;
    public UInt32 lType;
}

VB Definition:

Structure MEMORY_BASIC_INFORMATION
    Public BaseAddress as IntPtr
    Public AllocationBase as IntPtr
    Public AllocationProtect as UInt32
    Public RegionSize as IntPtr
    Public State as UInt32
    Public Protect as UInt32
    Public lType as UInt32

End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation