| 73 | |
| 74 | |
| 75 | double dTimerTicksPerSecond() |
| 76 | { |
| 77 | static int query=0; |
| 78 | static double hz=0.0; |
| 79 | if (!query) { |
| 80 | LARGE_INTEGER a; |
| 81 | QueryPerformanceFrequency (&a); |
| 82 | hz = double(a.QuadPart); |
| 83 | query = 1; |
| 84 | } |
| 85 | return hz; |
| 86 | } |
| 87 | |
| 88 | #endif |
| 89 |
no outgoing calls
no test coverage detected