| 65 | } |
| 66 | |
| 67 | void PrintMessage(CONSOLE_COLOR color, const char* msg) |
| 68 | { |
| 69 | if(color != CONSOLE_COLOR::NORMAL) |
| 70 | SetConsoleColor(color); |
| 71 | |
| 72 | printf("%s\n", msg); |
| 73 | |
| 74 | if (color != CONSOLE_COLOR::NORMAL) |
| 75 | SetConsoleColor(CONSOLE_COLOR::NORMAL); |
| 76 | } |
| 77 | |
| 78 | void PrintMessage(CONSOLE_COLOR color, const wchar_t* msg) |
| 79 | { |
no test coverage detected