How can I convert a character of any language that I catch via WM_CHAR in WndProc to a keyboard scan code? Like if the button pressed is x it would return 0x2d and etc.

有帮助吗?

解决方案

The scan code is in bits 16-23 of the lParam parameter according to the WM_CHAR documentation, so just shift and mask:

int scanCode = (lParam >> 16) & 0xff;

If you've got a character you can call OemKeyScan, which puts the scan code in the low byte:

char c='X';
int scanCode=OemKeyScan(c) & 0x0ff;
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top