Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
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
–
–
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.