| 222 | |
| 223 | #if defined(_WIN32) |
| 224 | inline void query_counter(timer_ticks* pTicks) |
| 225 | { |
| 226 | QueryPerformanceCounter(reinterpret_cast<LARGE_INTEGER*>(pTicks)); |
| 227 | } |
| 228 | inline void query_counter_frequency(timer_ticks* pTicks) |
| 229 | { |
| 230 | QueryPerformanceFrequency(reinterpret_cast<LARGE_INTEGER*>(pTicks)); |
no outgoing calls
no test coverage detected