Huw Davies : dinput/tests: Send a matching key-up event.
Module: wine Branch: master Commit: 4b110f7554460bd0743dae966c88e7715339594a URL: http://source.winehq.org/git/wine.git/?a=commit;h=4b110f7554460bd0743dae966c... Author: Huw Davies <huw(a)codeweavers.com> Date: Fri May 22 09:45:02 2015 +0100 dinput/tests: Send a matching key-up event. The user32 msg tests are failing (more than normal) as they still see 'Q' in the down state. --- dlls/dinput/tests/keyboard.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/dinput/tests/keyboard.c b/dlls/dinput/tests/keyboard.c index a0e7d24..520740d 100644 --- a/dlls/dinput/tests/keyboard.c +++ b/dlls/dinput/tests/keyboard.c @@ -110,6 +110,7 @@ static void acquire_tests(IDirectInputA *pDI, HWND hwnd) for (i = 0; i < sizeof(custom_state) / sizeof(custom_state[0]); i++) ok(custom_state[i] == 0, "Should be zeroed, got 0x%08x\n", custom_state[i]); } + keybd_event('Q', 0, KEYEVENTF_KEYUP, 0); if (pKeyboard) IUnknown_Release(pKeyboard); }
participants (1)
-
Alexandre Julliard