Re: [Resend] user32: Post the WM_KEY{DOWN|UP} message whenWM_IME_KEY{DOWN|UP} message is generated by IME.
"ByeongSik Jeon" <bsjeon(a)hanmail.net> wrote:
@@ -4496,6 +4551,9 @@ static void test_messages(void)
DestroyWindow(hwnd); flush_sequence(); + + /* Message sequences by WM_IME_KEYDOWN */ + test_wm_ime_keydown(); }
test_messages() is not a proper place to add new tests. Please have a look at test_combobox_messages() how to test key down/up behaviour. In order to check posted messages, you need to do what other tests do: run a GetMessage/TranslateMessage/DispatchMessage loop, and let the window proc handle the messages. -- Dmitry.
"Dmitry Timoshkov" <dmitry(a)codeweavers.com> wrote:
In order to check posted messages, you need to do what other tests do: run a GetMessage/TranslateMessage/DispatchMessage loop, and let the window proc handle the messages.
s/GetMessage/PeekMessage/ -- Dmitry.
participants (1)
-
Dmitry Timoshkov