| 1394 | // in the middle of long operations such as creating and saving files. |
| 1395 | |
| 1396 | void PrintProgress(CONST char *sz) |
| 1397 | { |
| 1398 | #ifndef WIN |
| 1399 | // Progress messages are ignored in the Windows version. |
| 1400 | AnsiColor(kYellowA); |
| 1401 | fprintf(stderr, "%s\n", sz); |
| 1402 | AnsiColor(kDefault); |
| 1403 | #endif |
| 1404 | } |
| 1405 | |
| 1406 | |
| 1407 | // Print a general user message given a string. This is just like the warning |
no test coverage detected