prozessor

naja zur sprache c/c++ wie halt das forum schon sagt :)

c++ würd mir nahe liegen

allgemein gehalten brauche ich die Prozessorinfos
wie family,model,stepping ....

und nach möglichkeit infos über den chipsatz

...
 
moin


OK das ist doch schonmal ne Aussage.
Wenn du uns jetzt noch den Compiler verrätst...

Ich werde nun nochmal ein bscihen gucken ob ich was nützliches finde.

Achte auch auf deine Rechtschreibung, sonst werden die Mods böse.


mfg
umbrasaxum
 
moin


Hier ein Beispiel, darauf kannst du vielleicht aufbauen:
Code:
#include <windows.h>
#include <stdio.h>

void main()
{
   SYSTEM_INFO siSysInfo;
 
   // Copy the hardware information to the SYSTEM_INFO structure. 
 
   GetSystemInfo(&siSysInfo); 
 
   // Display the contents of the SYSTEM_INFO structure. 

   printf("Hardware information: \n");  
   printf("  OEM ID: %u\n", siSysInfo.dwOemId);
   printf("  Number of processors: %u\n", 
      siSysInfo.dwNumberOfProcessors); 
   printf("  Page size: %u\n", siSysInfo.dwPageSize); 
   printf("  Processor type: %u\n", siSysInfo.dwProcessorType); 
   printf("  Minimum application address: %lx\n", 
      siSysInfo.lpMinimumApplicationAddress); 
   printf("  Maximum application address: %lx\n", 
      siSysInfo.lpMaximumApplicationAddress); 
   printf("  Active processor mask: %u\n", 
      siSysInfo.dwActiveProcessorMask); 
}

So steht es in der MSDN.
Nu versuch erstmal selber.


mfg
umbrasaxum
 
Zurück