MCPcopy Create free account
hub / github.com/WheretIB/nullc / myGetPreciseTime

Function myGetPreciseTime

SuperCalc.cpp:344–351  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

342void FillVariableInfo(const ExternTypeInfo& type, char* ptr, HTREEITEM parent, bool update = false);
343
344double myGetPreciseTime()
345{
346 LARGE_INTEGER freq, count;
347 QueryPerformanceFrequency(&freq);
348 QueryPerformanceCounter(&count);
349 double temp = double(count.QuadPart) / double(freq.QuadPart);
350 return temp*1000.0;
351}
352
353HANDLE breakResponse = NULL;
354unsigned int breakCommand = NULLC_BREAK_PROCEED, lastBreakCommand = NULLC_BREAK_PROCEED;

Callers 1

CalcThreadFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected