SetConsoleScreenBufferSize PROC
  (MS-Windows)
   Changes the size of the console screen
buffer.
| 
SetConsoleScreenBufferSize PROTO,
    outHandle:DWORD,    ; handle to screen buffer
    dwSize:COORD        ; new screen buffer size
Returns: (BOOL) EAX = TRUE if successful,
                      FALSE (zero) if fails.
 | 
| Argument | Win Type | MASM Type | Description | 
|---|---|---|---|
| outHandle | HANDLE | DWORD | Handle to a console screen buffer. The handle must have GENERIC_WRITE access. | 
| dwSize | COORD | COORD | A COORD
structure containing the new size in rows and columns, of the
screen buffer. The new dimensions cannot be less than the width and height of the screen buffer's window. | 
| Converted from CHM to HTML with chm2web Pro 2.85 (unicode) |