extern structstd.os.windows.MEMORY_BASIC_INFORMATION[src]

Fields

BaseAddress: PVOID
AllocationBase: PVOID
AllocationProtect: DWORD
PartitionId: WORD
RegionSize: SIZE_T
State: DWORD
Protect: DWORD
Type: DWORD

Source Code

Source code
pub const MEMORY_BASIC_INFORMATION = extern struct {
    BaseAddress: PVOID,
    AllocationBase: PVOID,
    AllocationProtect: DWORD,
    PartitionId: WORD,
    RegionSize: SIZE_T,
    State: DWORD,
    Protect: DWORD,
    Type: DWORD,
}