| 418 | } |
| 419 | |
| 420 | void PrintTotalTime() |
| 421 | { |
| 422 | DWORD TotalTime = SetEndTime(); |
| 423 | |
| 424 | if(TotalTime != 0) |
| 425 | PrintMessage("TotalTime: %u.%u second(s)", (TotalTime / 1000), (TotalTime % 1000)); |
| 426 | PrintMessage("Work complete."); |
| 427 | } |
| 428 | |
| 429 | template <typename XCHAR> |
| 430 | int PrintErrorVa(const XCHAR * szFormat, ...) |
no outgoing calls
no test coverage detected