I'm working with a Windows virtual keyboard driver to generate keystrokes, and it requires specifying keys using the USB keyboard usage index. (See "Windows Platform Design Notes - Keyboard Scan Code Specification" appendix C for a list of usage indices and corresponding keys.) However, the keys I need to type will be specified by virtual key code.
Windows provides functions for converting between virtual key codes and scan codes, but I haven't found any way of converting between scan codes and these usage indices. Other than writing my own function that converts the hundred-and-change possible scan codes that my virtual keyboard driver may need to type, does Microsoft provide a function for doing this?
The following hash table will convert from scan code to USB usage ID. Note that it only includes page IDs with a corresponding usage page of 7.
The translations were acquired from the Microsoft document USB HID to PS/2 Scan Code Translation Table and from this pastebin that conveniently already has all that information formatted into a Python data structure.