.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH SetConsoleMode 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fBSetConsoleMode\fR (KERNEL32.@) .SH SYNOPSIS BOOL SetConsoleMode ( HANDLE \fIhcon\fR, DWORD \fImode\fR ) .SH DESCRIPTION .PP SetConsoleMode [\fBKERNEL32\fR.@] Sets input \fImode\fR of console's input buffer. .SH PARAMS \fIhcon\fR \fB[In]\fR Handle to console input or screen buffer. .PP \fImode\fR \fB[In]\fR Input or output \fImode\fR to set. .PP .SH RETURNS .PP \fBSuccess:\fR \fBTRUE\fR .PP \fBFailure:\fR \fBFALSE\fR. .PP \fBmode:\fR \fBENABLE_PROCESSED_INPUT\fR 0x01 \fBENABLE_LINE_INPUT\fR 0x02 \fBENABLE_ECHO_INPUT\fR 0x04 \fBENABLE_WINDOW_INPUT\fR 0x08 \fBENABLE_MOUSE_INPUT\fR 0x10 .SH IMPLEMENTATION .PP Declared in \fB"wincon.h"\fR. .PP Implemented in \fB"dlls/kernel32/console.c"\fR. .PP Debug channel \fB"console"\fR.