Quote:
Originally Posted by Masquerade
DiCaPrIo
So I would put if GetSysCores = 6 in the if loop after calling the function?
|
Code:
procedure InitializeWizard();
var Cores,Threads:Integer;
begin
Cores:=GetSysCores;
Threads:=GetSysThreads;
if Cores = 6 then begin
//yourcode
end;
if Threads = 6 then begin
//yourcode
end;
end;