GetSystemInfo

Prototypes

VOID GetSystemInfo(SYSTEM_INFO *Informations);

Description

Retrouve les informations caractérisant le système d'exploitation.

Exemple

#include <windows.h>
#include <winbase.h>

SYSTEM_INFO Informations;

GetSystemInfo(&Informations);
...
if (Informations.dwProcessorType==PROCESSOR_INTEL_PENTIUM)
...

Avertissement

Néant.

Voir aussi

GetVersionEx pour retrouver la version du système d'exploitation.