Skip to content

Instantly share code, notes, and snippets.

View maxkleiner's full-sized avatar

Max Kleiner maxkleiner

View GitHub Profile
@maxkleiner
maxkleiner / CPUClockFrequency
Created January 11, 2021 20:18
CPUClockFrequency
const
SHighResCounterError = 'High resolution counter error';
function CPUClockFrequency: Word64;
var
Freq : int64;
begin
Freq := 0;
if not QueryPerformanceFrequency(Freq) then
xraise (ETimerError2.Create(SHighResCounterError));