[DllImport("kernel32.dll")]
static extern bool GetConsoleMode(IntPtr hConsoleHandle, out uint lpMode);
<Flags()> Public Enum ConsoleModes
' 55 /* Console Mode flags */
ENABLE_PROCESSED_INPUT = &H1
ENABLE_LINE_INPUT = &H2
ENABLE_ECHO_INPUT = &H4
ENABLE_WINDOW_INPUT = &H8
ENABLE_MOUSE_INPUT = &H10
ENABLE_INSERT_MODE = &H20
ENABLE_QUICK_EDIT_MODE = &H40
ENABLE_EXTENDED_FLAGS = &H80
ENABLE_AUTO_POSITION = &H100
ENABLE_PROCESSED_OUTPUT = &H1
ENABLE_WRAP_AT_EOL_OUTPUT = &H2
End Enum
None.
Please add some!
Please add some!
Do you know one? Please contribute it!