Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.