| 171 | } |
| 172 | |
| 173 | void Console::EnableUnderscore(bool enable) |
| 174 | { |
| 175 | if (NULL == ConsoleHandle) |
| 176 | return; |
| 177 | |
| 178 | if (TextAttribute.Underscore == enable) |
| 179 | return; |
| 180 | |
| 181 | TextAttribute.Underscore = enable; |
| 182 | SetConsoleTextAttribute(ConsoleHandle, TextAttribute.AsWord); |
| 183 | } |
| 184 | |
| 185 | void Console::Write(const char* str, int len) |
| 186 | { |
nothing calls this directly
no outgoing calls
no test coverage detected