In my game code, I process key input by handling WM-KEYDOWN message. wParam gives me the keycode i need.
The problem is with IME, especially KoreanIME. I get WM-IME-COMPOSITION and then WM-KEYUP, but never the WM-KEYDOWN.
So, the bottom line is.. I need to get keycode when i receive WM-IME-COMPOSITION. Is there a way to do so?
Any help will be greatly appreciated. Thanks!