GetSystemInfo

  VOID GetSystemInfo(lpSystemInfo)    
  LPSYSTEM_INFO lpSystemInfo; /* address of system info structure */

The GetSystemInfo function returns information about the current system.

Parameters

lpSystemInfo

Points to a SYSTEM_INFO structure that will be filled in by this function.

The SYSTEM_INFO structure has the following form:

typedef struct _SYSTEM_INFO { /* sinf */

DWORD dwOemId;

DWORD dwPageSize;

LPVOID lpMinimumApplicationAddress;

LPVOID lpMaximumApplicationAddress;

DWORD dwActiveProcessorMask;

DWORD dwNumberOfProcessors;

DWORD dwProcessorType;

DWORD dwProcessorRevision;

DWORD dwProcessorOptions;

} SYSTEM_INFO, *LPSYSTEM_INFO;

Return Value

This function does not return a value.