Tags
- 좋은 개발자
- postman pre-request
- postman
- web developer
- oracle
- postman collection variables
- Android
- postman excel
- emplace_back
- Front-end developer
- Intellij
- postman collection
- Interaction developer
- C++
- UI/UX Engineer
- Unity
- postman automations
- 다빈치 리졸브
- 우수한 프런트 개발자
- postman csv
- LSL_Script
- postman html parse
- MFC
- Java
- c#
- Android/iOS Developer
- solidity
- postman tests
- 프런트엔드
- postman session
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
Archives
- Today
- Total
목록Virtual-Key (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