Scroll to navigation

SetConsoleScreenBufferSize(3w) Wine API SetConsoleScreenBufferSize(3w)

NAME

SetConsoleScreenBufferSize (KERNEL32.@)

SYNOPSIS

BOOL SetConsoleScreenBufferSize
(
HANDLE hConsoleOutput,
COORD dwSize
)
 

DESCRIPTION

SetConsoleScreenBufferSize [ KERNEL32.@] Changes size of console.
 

PARAMS

hConsoleOutput [In] Handle to console screen buffer.
dwSize [In] New size in character rows and cols.
 

RETURNS

Success: TRUE
Failure: FALSE
 

IMPLEMENTATION

Declared in "wincon.h".
Implemented in "dlls/kernel32/console.c".
Debug channel "console".
Oct 2012 Wine API