문제

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