winim
winim copied to clipboard
Missing VK_* constants from 0x30 to 0x5A
These are the constants VK_0 to VK_9 and VK_A to VK_Z. Are they absent on purpose?
They are missing because the winuser.h file in the Windows SDK also lacks them. Here are the comments found in the winuser.h file:
/*
* VK_0 - VK_9 are the same as ASCII '0' - '9' (0x30 - 0x39)
* 0x3A - 0x40 : unassigned
* VK_A - VK_Z are the same as ASCII 'A' - 'Z' (0x41 - 0x5A)
*/