1 #ifndef MiscLib__PERFORMANCE_HEADER__
2 #define MiscLib__PERFORMANCE_HEADER__
18 QueryPerformanceCounter(&count);
19 return count.QuadPart;
25 LARGE_INTEGER dummy_performance_freq;
26 QueryPerformanceFrequency(&dummy_performance_freq);
27 performance_t performance_freq = dummy_performance_freq.QuadPart;
28 return double(performance_freq);
42 return double(CLOCKS_PER_SEC);