Rémi Bernon : user32/tests: Add optional flags for alternative sequence on w1064v1809.

Alexandre Julliard julliard at winehq.org
Wed Nov 6 16:54:29 CST 2019


Module: wine
Branch: master
Commit: ad5ca21de664d384f18f84d861c824e3a6ecc0f1
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=ad5ca21de664d384f18f84d861c824e3a6ecc0f1

Author: Rémi Bernon <rbernon at codeweavers.com>
Date:   Tue Nov  5 20:44:51 2019 +0100

user32/tests: Add optional flags for alternative sequence on w1064v1809.

Signed-off-by: Rémi Bernon <rbernon at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/user32/tests/msg.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c
index 6d8add4e0e..3f11995e33 100644
--- a/dlls/user32/tests/msg.c
+++ b/dlls/user32/tests/msg.c
@@ -9054,11 +9054,13 @@ static const struct message WmShiftMouseButton[] = {
     { WM_MOUSEMOVE, sent|wparam|optional, 0, 0 },
     { WM_LBUTTONDOWN, wparam, MK_LBUTTON|MK_SHIFT, 0 },
     { WM_LBUTTONDOWN, sent|wparam, MK_LBUTTON|MK_SHIFT, 0 },
-    { WM_LBUTTONUP, wparam, MK_SHIFT, 0 },
-    { WM_LBUTTONUP, sent|wparam, MK_SHIFT, 0 },
+    { WM_LBUTTONUP, wparam|optional, MK_SHIFT, 0 }, /* < w1064v1809 */
+    { WM_LBUTTONUP, sent|wparam|optional, MK_SHIFT, 0 }, /* < w1064v1809 */
     { HCBT_KEYSKIPPED, hook|wparam|lparam|optional, VK_SHIFT, 0xc0000001 }, /* XP */
     { WM_KEYUP, wparam|lparam, VK_SHIFT, 0xc0000001 },
     { WM_KEYUP, sent|wparam|lparam, VK_SHIFT, 0xc0000001 },
+    { WM_LBUTTONUP, wparam|optional, MK_SHIFT, 0 }, /* >= w1064v1809 */
+    { WM_LBUTTONUP, sent|wparam|optional, MK_SHIFT, 0 }, /* >= w1064v1809 */
     { 0 }
 };
 static const struct message WmF1Seq[] = {




More information about the wine-cvs mailing list