SYSTEM_INFO (Structures)
Last changed: -172.216.19.3

.
Summary
The SYSTEM_INFO structure contains information about the current computer system. This includes the architecture and type of the processor, the number of processors in the system, the page size, and other such information.

C# Definition:

[StructLayout(LayoutKind.Sequential, CharSet=CharSet.Auto)]
public struct SYSTEM_INFO
{
    public  int  dwOemId;
    public  int  dwPageSize;
    public  int  lpMinimumApplicationAddress;
    public    int  lpMaximumApplicationAddress;
    public  int  dwActiveProcessorMask;
    public  int  dwNumberOfProcessors;
    public  int  dwProcessorType;
    public  int  dwAllocationGranularity;
    public  int  dwProcessorLevel;
    public  int  dwProcessorRevision;    
}

VB Definition:

<StructLayout(LayoutKind.Sequential)> _
Public Structure SYSTEM_INFO
  Dim wProcessorArchitecture As Int16
  Dim wReserved As Int16
  Dim dwPageSize As Integer
  Dim lpMinimumApplicationAddress As Integer
  Dim lpMaximumApplicationAddress As Integer
  Dim dwActiveProcessorMask As Integer
  Dim dwNumberOfProcessors As Integer
  Dim dwProcessorType As Integer
  Dim dwAllocationGranularity As Integer
  Dim wProcessorLevel As Int16
  Dim wProcessorRevision As Int16
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation
SYSTEM_INFO on MSDN