There was an error while loading. Please reload this page.
2 parents 4cdcdf1 + feda5e7 commit 6ad9c6cCopy full SHA for 6ad9c6c
cpp-terminal/private/inputOutputModeFlags.hpp
@@ -0,0 +1,13 @@
1
+#pragma once
2
+
3
+#ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING
4
+#define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004
5
+#endif
6
7
+#ifndef DISABLE_NEWLINE_AUTO_RETURN
8
+#define DISABLE_NEWLINE_AUTO_RETURN 0x0008
9
10
11
+#ifndef ENABLE_VIRTUAL_TERMINAL_INPUT
12
+#define ENABLE_VIRTUAL_TERMINAL_INPUT 0x0200
13
cpp-terminal/private/platform.cpp
@@ -1,5 +1,7 @@
#include "platform.hpp"
+#include "inputOutputModeFlags.hpp"
bool Term::Private::is_stdin_a_tty() {
#ifdef _WIN32
return _isatty(_fileno(stdin));
0 commit comments