 |
|
 |
mbasic Level: Guest

|
Win32 API Functions & Processor Info
Hi
I'm trying to return processor information using the GetSystemInfo function of Kernel32.dll, however I am having difficuilty to make any sense of the output for processor level and revision, I currently get:
ProcessorArchitecture = 0
ProcessorType = 586
ProcessorLevel = 83886086
ProcessorRevision = 0
Surely these can't be right.
Can anyone tell me how to interpret the Processor Level output to get the processor stepping, model and family info.
My processor is a Mobile Pentium II 266 Deschutes (x86 Family 6 Model 5 Stepping 0) running Windows 98SE, how does this relate to the output I get above?
Can someone please tell me where I can download a free guide to windows API functions/methods and their properties, and the output expected and how to interpret that output?, please....thanks
Furthermore, can anyone recommend where I can find detaied information about processor architecture, i.e. a list of all the processors of each manufacturer, together with their corresponding Family, Model, Stepping & Revision information, and which functions they support (e.g. MMX, SSE, 3DNow! etc).
Many Thanks
All the best,
Gav
|
|
17-05-2002 at 03:28 AM |
|
|  |
|
|
JLRodgers Level: Moderator
 Registered: 04-04-2002 Posts: 1617
|
Re: Win32 API Functions & Processor Info
As for free API stuff, http://www.allapi.net has (well I think so, they're no longer maintaining it) a free downloadable API program that has 925 functions with examples.
|
|
17-05-2002 at 03:42 AM |
|
|
JLRodgers Level: Moderator
 Registered: 04-04-2002 Posts: 1617
|
Re: Win32 API Functions & Processor Info
The following has code that may help:
http://www.andreavb.f2s.com/tip020012.html
Although it didn't identify my processor properly...
|
|
17-05-2002 at 03:47 AM |
|
|
JLRodgers Level: Moderator
 Registered: 04-04-2002 Posts: 1617
|
Re: Win32 API Functions & Processor Info
Code at the following address may work. It did detect mine (although it's because it says PII, PIII, P4 all in 1 grouping).
http://www.mvps.org/vbnet/code/system/getsysteminfo.htm
|
|
17-05-2002 at 04:17 AM |
|
|
|
|
 |
 |