SetConsoleCursorInfo function kernel32
Sets the size and visibility of the cursor for the specified console screen buffer.
BOOL SetConsoleCursorInfo(
_In_ HANDLE hConsoleOutput,
_In_ const CONSOLE_CURSOR_INFO *lpConsoleCursorInfo
);
Implementation
int SetConsoleCursorInfo(
int hConsoleOutput, Pointer<CONSOLE_CURSOR_INFO> lpConsoleCursorInfo) =>
_SetConsoleCursorInfo(hConsoleOutput, lpConsoleCursorInfo);