According to MSDN, the dwMode
parameter for the SetConsoleMode()
function should allow ENABLE_VIRTUAL_TERMINAL_PROCESSING
(0x04).
My Visual Studio (2013 Ultimate with Update 5) does not define that constant. It only has these two:
#define ENABLE_PROCESSED_OUTPUT 0x0001
#define ENABLE_WRAP_AT_EOL_OUTPUT 0x0002
Was ENABLE_VIRTUAL_TERMINAL_PROCESSING
removed?
I am trying to use it like this, so that I can control the cursor using the VT100 escape sequences.
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
DWORD dwMode = 0;
GetConsoleMode(hOut, &dwMode);
dwMode |= ENABLE_VIRTUAL_TERMINAL_PROCESSING;
SetConsoleMode(hOut, dwMode);
For reference, see this MSDN article.
If your SDK is too old, ENABLE_VIRTUAL_TERMINAL_PROCESSING
may not be defined.
You can manually define it with the following code:
#ifndef ENABLE_VIRTUAL_TERMINAL_PROCESSING
#define ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004
#endif
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With