| 534 | #if defined(_WIN32) || defined(_WIN64) || defined(__CYGWIN__) |
| 535 | |
| 536 | LARGE_INTEGER QueryPerformanceCounter() |
| 537 | { |
| 538 | LARGE_INTEGER current; |
| 539 | QueryPerformanceCounter(¤t); |
| 540 | return current; |
| 541 | } |
| 542 | |
| 543 | LARGE_INTEGER QueryPerformanceFrequency() |
| 544 | { |
no outgoing calls
no test coverage detected