VOID GetSystemInfo(SYSTEM_INFO *Informations);
#include <windows.h>
#include <winbase.h>
SYSTEM_INFO Informations;
GetSystemInfo(&Informations);
...
if (Informations.dwProcessorType==PROCESSOR_INTEL_PENTIUM)
{
...
}
...