Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than kernel32, prefix the name with the module name and a period.
GetSystemInfo (kernel32)
.
Summary
Retrieves information about the current system
C# Signature:
[DllImport("kernel32.dll", SetLastError=true)]
internal static extern void GetSystemInfo(ref SYSTEM_INFO Info);
User-Defined Types:
[DllImport("kernel32.dll", SetLastError=true)]
internal static extern void GetSystemInfo(ref SYSTEM_INFO Info);
[StructLayout(LayoutKind.Sequential)]
internal struct SYSTEM_INFO
{
internal ushort wProcessorArchitecture;
internal ushort wReserved;
internal uint dwPageSize;
internal IntPtr lpMinimumApplicationAddress;
internal IntPtr lpMaximumApplicationAddress;
internal IntPtr dwActiveProcessorMask;
internal uint dwNumberOfProcessors;
internal uint dwProcessorType;
internal uint dwAllocationGranularity;
internal ushort wProcessorLevel;
internal ushort wProcessorRevision;
}
(from https://referencesource.microsoft.com/#mscorlib/microsoft/win32/win32native.cs,dbd1d00d77377879)
User-Defined Types:
Alternative Managed API:
To determine whether the OS or Process is x64, using .NET 4, see System.Environment (Is64BitProcess , Is64BitOperatingSystem ); http://msdn.microsoft.com/en-us/library/z8te35sa.aspx
[StructLayout(LayoutKind.Sequential)]
internal struct SYSTEM_INFO
{
internal ushort wProcessorArchitecture;
internal ushort wReserved;
internal uint dwPageSize;
internal IntPtr lpMinimumApplicationAddress;
internal IntPtr lpMaximumApplicationAddress;
internal IntPtr dwActiveProcessorMask;
internal uint dwNumberOfProcessors;
internal uint dwProcessorType;
internal uint dwAllocationGranularity;
internal ushort wProcessorLevel;
internal ushort wProcessorRevision;
}
Sample Code:
void Test()
{
NativeMethods.SYSTEM_INFO
info;
NativeMethods.GetSystemInfo(out info);
}
Documentation
(from https://referencesource.microsoft.com/#mscorlib/microsoft/win32/win32native.cs,dbd1d00d77377879)
Alternative Managed API:
To determine whether the OS or Process is x64, using .NET 4, see System.Environment (Is64BitProcess , Is64BitOperatingSystem ); http://msdn.microsoft.com/en-us/library/z8te35sa.aspx
Sample Code:
void Test()
{
NativeMethods.SYSTEM_INFO
info;
NativeMethods.GetSystemInfo(out info);
}
Documentation
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).