Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kyr27/keys2scancodes
Shows how to easily map a range of keys into scancodes and to how to retrieve them
https://github.com/kyr27/keys2scancodes
cpp-programming mapvirtualkey vkkeyscan windows
Last synced: about 1 month ago
JSON representation
Shows how to easily map a range of keys into scancodes and to how to retrieve them
- Host: GitHub
- URL: https://github.com/kyr27/keys2scancodes
- Owner: Kyr27
- Created: 2024-09-06T17:31:59.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-09-07T15:33:12.000Z (4 months ago)
- Last Synced: 2024-10-31T11:23:00.917Z (3 months ago)
- Topics: cpp-programming, mapvirtualkey, vkkeyscan, windows
- Language: C++
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Keys2ScanCodes
Tired of having to do this constantly:
```
UINT scanCodeA = MapVirtualKey(0x41, MAPVK_VK_TO_VSC);
```
If so, i have a better method for you, look in main.cpp to see a better way of doing it.