Only call Win32 API to enable colored output once
This commit is contained in:
parent
b0bb905a40
commit
1201a68f66
|
@ -163,6 +163,11 @@ void enableColoredOutput()
|
||||||
GetConsoleMode, GetStdHandle, HANDLE, INVALID_HANDLE_VALUE,
|
GetConsoleMode, GetStdHandle, HANDLE, INVALID_HANDLE_VALUE,
|
||||||
SetConsoleMode, STD_OUTPUT_HANDLE;
|
SetConsoleMode, STD_OUTPUT_HANDLE;
|
||||||
|
|
||||||
|
static bool enabledColor = false;
|
||||||
|
if (enabledColor)
|
||||||
|
return;
|
||||||
|
enabledColor = true;
|
||||||
|
|
||||||
// Set output mode to handle virtual terminal sequences
|
// Set output mode to handle virtual terminal sequences
|
||||||
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
|
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
|
||||||
if (hOut == INVALID_HANDLE_VALUE)
|
if (hOut == INVALID_HANDLE_VALUE)
|
||||||
|
|
Loading…
Reference in New Issue