December 2000
Intermediate to advanced
720 pages
15h 7m
English
TheGetSystemInfo function returns information about the hardware of the system on which your program is running. This information is useful when you want to tune your application's behavior to the hardware that is available.
| GetSystemInfo | Returns information about the current hardware |
VOID GetSystemInfo( LPSYSTEM_INFO info) | |
| info | a SYSTEM_INFO structure |
| Returns nothing |
The function returns a SYSTEM_INFO structure that contains several pieces of immediately obvious information, along with other pieces of information that are more obscure, as follows:
typedef struct _SYSTEM_INFO { DWORD dwOemId; DWORD dwPageSize; LPVOID lpMinimumApplicationAddress; LPVOID lpMaximumApplicationAddress; DWORD dwActiveProcessorMask; ...Read now
Unlock full access