Advertisement
Guest User

Untitled

a guest
Jan 24th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. void hidecursor()
  2. {
  3.    HANDLE consoleHandle = GetStdHandle(STD_OUTPUT_HANDLE);
  4.    CONSOLE_CURSOR_INFO info;
  5.    info.dwSize = 100;
  6.    info.bVisible = FALSE;
  7.    SetConsoleCursorInfo(consoleHandle, &info);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement