Registriert seit: 29. Nov 2004
Ort: Erfurt
254 Beiträge
Turbo Delphi für Win32
|
Re: SystemUtilities V 1.0
30. Nov 2004, 10:56
In der Jedi Code Libary ist sowas drin ...
Delphi-Quellcode:
uses
JclSysinfo;
function GetCPUInfoStr:String;
var
CPUInfo:TCpuInfo;
FreqInfo:TFreqInfo;
begin
GetCpuInfo(CPUInfo);
GetCPUSpeed(FreqInfo);
Result := (CPUInfo.Manufacturer + ' '
+ CPUInfo.CpuName + ' @ '
+ IntToStr(FreqInfo.RawFreq)
+ 'MHZ');
end;
|