Tags
- Interaction developer
- postman
- 우수한 프런트 개발자
- solidity
- Android
- postman tests
- postman html parse
- 다빈치 리졸브
- postman session
- postman collection
- 좋은 개발자
- postman collection variables
- Front-end developer
- postman csv
- C++
- postman pre-request
- postman automations
- postman excel
- Java
- LSL_Script
- oracle
- MFC
- UI/UX Engineer
- web developer
- Android/iOS Developer
- c#
- Intellij
- Unity
- 프런트엔드
- emplace_back
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Archives
- Today
- Total
목록GetAsyncKeyState (1)
david's daily developer note
GetAsyncKeyState
함수 호출되는 시점에, 특정 키가 동작중인지, 중단되었는지 여부 및 키가 눌렸는지 체크한다. if ((GetAsyncKeyState(VK_SHIFT) & 0x8000) != 0){ return; } MS 공식 예제 while (GetMessage(&msg, nullptr, 0, 0)) { if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) { TranslateMessage(&msg); DispatchMessage(&msg); } switch (msg.message) { case WM_KEYDOWN: if ((GetAsyncKeyState(VK_ESCAPE) & 0x01) && bRunning) { Stop(); } break; } } Virtual-Key ..
[Develop] Native/Native
2012. 2. 28. 11:50