Answers for "get cpu id with delphi"

0

get cpu id with delphi

In PAS file:
          
          Interface
          
          function CPUFamily: String; external 'HardwareIDExtractorPas.DLL';
          
          
          Implementation
          
          procedure Button1ClickExecute(Sender: TObject);
          begin
          Label1.Caption:= CPUFamily;
          end;
Posted by: Guest on March-01-2022

Browse Popular Code Answers by Language