Does anybody know the values of the following flags for SetConsoleMode()?
Apparently Microsoft forgot to put them in the headers. Thanks in advance.
ENABLE_INSERT_MODE
ENABLE_QUICK_EDIT_MODE
ENABLE_EXTENDED_FLAGS
ENABLE_AUTO_POSITION
DotNetJunkies User - 04 May 2004 06:46 GMT
#define ENABLE_INSERT_MODE 0x0020
#define ENABLE_QUICK_EDIT_MODE 0x0040
#define ENABLE_EXTENDED_FLAGS 0x0080
#define ENABLE_AUTO_POSITION 0x0100
---