typedef struct _CONSOLE_CURSOR_INFO { /* cci */
DWORD dwSize;
BOOL bVisible;
} CONSOLE_CURSOR_INFO, *PCONSOLE_CURSOR_INFO;
The CONSOLE_CURSOR_INFO data structure contains information about the console cursor. It is used with the GetConsoleCursorInfo and SetConsoleCursorInfo functions.
dwSize
Specifies a number between 1–100 indicating the percentage of the character cell that is filled by the cursor. The cursor appearance varies from completely filling the cell to a horizontal line at the bottom ofthe cell.
bVisible
Specifies the visibility of the cursor. TRUE if the cursor is visible.