SetConsoleMode.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

SetConsoleMode (KERNEL32.@)

SYNOPSIS

BOOL SetConsoleMode
 (
  HANDLE hcon,
  DWORD  mode
 )

DESCRIPTION

SetConsoleMode [KERNEL32.@] Sets input mode of console's input buffer.

PARAMS

hcon [In] Handle to console input or screen buffer.

mode [In] Input or output mode to set.

RETURNS

Success: TRUE

Failure: FALSE.

mode: ENABLE_PROCESSED_INPUT 0x01 ENABLE_LINE_INPUT 0x02 ENABLE_ECHO_INPUT 0x04 ENABLE_WINDOW_INPUT 0x08 ENABLE_MOUSE_INPUT 0x10

IMPLEMENTATION

Defined in "wincon.h".

Implemented in "dlls/kernel32/console.c".

Debug channel "console".