diff --git a/src/metrics.cpp b/src/metrics.cpp index 23f005a3e..6f238e947 100644 --- a/src/metrics.cpp +++ b/src/metrics.cpp @@ -16,7 +16,11 @@ #include #include #include +#ifdef WIN32 +#include +#else #include +#endif #include void AtomicTimer::start() @@ -444,11 +448,17 @@ void ThreadShowMetricsScreen() // Get current window size if (isTTY) { +#ifdef WIN32 + CONSOLE_SCREEN_BUFFER_INFO csbi; + GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi); + cols = csbi.srWindow.Right - csbi.srWindow.Left + 1; +#else struct winsize w; w.ws_col = 0; if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &w) != -1 && w.ws_col != 0) { cols = w.ws_col; } +#endif } if (isScreen) {