반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <iostream>
#include <windows.h>
using namespace std;
/*커서 숨기기(0) or 보이기(1) */
void CursorView(char show) {
HANDLE hConsole;
CONSOLE_CURSOR_INFO ConsoleCursor;
hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
ConsoleCursor.bVisible = show;
ConsoleCursor.dwSize = 1;
SetConsoleCursorInfo(hConsole, &ConsoleCursor);
}
int main(void) {
//CursorView(true); // 커서 보이기
CursorView(false); // 커서 숨기기
return 0;
}
|
cs |
include <windows.h>
반응형
'C++' 카테고리의 다른 글
[C++] set STL에서 class 정렬 기준 바꾸기 (0) | 2022.08.20 |
---|---|
[C++ 정리] c언어에 추가 된 기능(수정 예정) (0) | 2022.04.05 |
[C/C++] 콘솔 커서 위치 이동하기 (0) | 2020.03.25 |
[C/C++] 콘솔 창 크기 조절 / 콘솔 창 제목 설정 (0) | 2020.03.25 |
[c++] int을 string으로 변환하기 (0) | 2020.03.25 |