extern structstd.os.windows.SYSTEM_BASIC_INFORMATION[src]

Fields

Reserved: ULONG
TimerResolution: ULONG
PageSize: ULONG
NumberOfPhysicalPages: ULONG
LowestPhysicalPageNumber: ULONG
HighestPhysicalPageNumber: ULONG
AllocationGranularity: ULONG
MinimumUserModeAddress: ULONG_PTR
MaximumUserModeAddress: ULONG_PTR
ActiveProcessorsAffinityMask: KAFFINITY
NumberOfProcessors: UCHAR

Source Code

Source code
pub const SYSTEM_BASIC_INFORMATION = extern struct {
    Reserved: ULONG,
    TimerResolution: ULONG,
    PageSize: ULONG,
    NumberOfPhysicalPages: ULONG,
    LowestPhysicalPageNumber: ULONG,
    HighestPhysicalPageNumber: ULONG,
    AllocationGranularity: ULONG,
    MinimumUserModeAddress: ULONG_PTR,
    MaximumUserModeAddress: ULONG_PTR,
    ActiveProcessorsAffinityMask: KAFFINITY,
    NumberOfProcessors: UCHAR,
}