SetConsoleCursorInfo PROC
(MS-Windows)
Sets the size and visibility of the console
screen buffer's cursor.
SetConsoleCursorInfo PROTO, outHandle:DWORD, ; console output handle pCursorInfo:PTR CONSOLE_CURSOR_INFO ; cursor information Returns: (BOOL) EAX = TRUE (non-zero) if successful, FALSE (zero) if fails. |
Argument | Win Type | MASM Type | Description |
---|---|---|---|
outHandle | HANDLE | DWORD | Handle to the console screen buffer. Handle must have GENERIC_WRITE access. |
pCursorInfo | CONST CONSOLE_CURSOR_INFO | PTR CONSOLE_CURSOR_INFO | Pointer to a CONSOLE_CURSOR_INFO structure containing the new specifications for cursor. |
Converted from CHM to HTML with chm2web Pro 2.85 (unicode) |