summaryrefslogtreecommitdiff
path: root/src/color.cc
diff options
context:
space:
mode:
authorShravan Narayan <shravanrn@gmail.com>2023-05-08 16:37:54 -0400
committerShravan Narayan <shravanrn@gmail.com>2023-05-09 14:39:27 -0400
commit44a132de57f5c0689402c97b36a52c4d6802c2e1 (patch)
treefb3b388700118bb3791de42a884857fd0b3ce77d /src/color.cc
parente04107ffdf79226c07eb777bd9a0e58600dff0e0 (diff)
downloadwabt-44a132de57f5c0689402c97b36a52c4d6802c2e1.tar.gz
wabt-44a132de57f5c0689402c97b36a52c4d6802c2e1.tar.bz2
wabt-44a132de57f5c0689402c97b36a52c4d6802c2e1.zip
Cleanup use of HAVE_WIN32_VT100 in color.cc
Diffstat (limited to 'src/color.cc')
-rw-r--r--src/color.cc36
1 files changed, 14 insertions, 22 deletions
diff --git a/src/color.cc b/src/color.cc
index 15e9eb90..66b8555e 100644
--- a/src/color.cc
+++ b/src/color.cc
@@ -20,11 +20,9 @@
#include "wabt/common.h"
-#if _WIN32
#if HAVE_WIN32_VT100
#include <io.h>
#include <windows.h>
-#endif
#elif HAVE_UNISTD_H
#include <unistd.h>
#endif
@@ -42,29 +40,23 @@ bool Color::SupportsColor(FILE* file) {
return atoi(force) != 0;
}
-#if _WIN32
-
- {
#if HAVE_WIN32_VT100
- HANDLE handle;
- if (file == stdout) {
- handle = GetStdHandle(STD_OUTPUT_HANDLE);
- } else if (file == stderr) {
- handle = GetStdHandle(STD_ERROR_HANDLE);
- } else {
- return false;
- }
- DWORD mode;
- if (!_isatty(_fileno(file)) || !GetConsoleMode(handle, &mode) ||
- !SetConsoleMode(handle, mode | ENABLE_VIRTUAL_TERMINAL_PROCESSING)) {
- return false;
- }
- return true;
-#else
- // TODO(binji): Support older Windows by using SetConsoleTextAttribute?
+
+ HANDLE handle;
+ if (file == stdout) {
+ handle = GetStdHandle(STD_OUTPUT_HANDLE);
+ } else if (file == stderr) {
+ handle = GetStdHandle(STD_ERROR_HANDLE);
+ } else {
+ return false;
+ }
+ DWORD mode;
+ if (!_isatty(_fileno(file)) || !GetConsoleMode(handle, &mode) ||
+ !SetConsoleMode(handle, mode | ENABLE_VIRTUAL_TERMINAL_PROCESSING)) {
return false;
-#endif
}
+ return true;
+ // TODO(binji): Support older Windows by using SetConsoleTextAttribute?
#elif HAVE_UNISTD_H