user32/tests: Fix compilation on systems that don't support nameless unions.

This commit is contained in:
Francois Gouget 2014-03-31 12:30:43 +02:00 committed by Alexandre Julliard
parent 6754c35589
commit ebd9918830
1 changed files with 6 additions and 6 deletions

View File

@ -7548,13 +7548,13 @@ START_TEST(win)
memset(input, 0, sizeof(input));
input[0].type = INPUT_MOUSE;
input[0].mi.dx = 101;
input[0].mi.dy = 101;
input[0].mi.dwFlags = MOUSEEVENTF_LEFTDOWN;
U(input[0]).mi.dx = 101;
U(input[0]).mi.dy = 101;
U(input[0]).mi.dwFlags = MOUSEEVENTF_LEFTDOWN;
input[0].type = INPUT_MOUSE;
input[0].mi.dx = 101;
input[0].mi.dy = 101;
input[0].mi.dwFlags = MOUSEEVENTF_LEFTUP;
U(input[0]).mi.dx = 101;
U(input[0]).mi.dy = 101;
U(input[0]).mi.dwFlags = MOUSEEVENTF_LEFTUP;
events_no = SendInput(2, input, sizeof(input[0]));
ok(events_no == 2, "SendInput returned %d\n", events_no);
ok(SetForegroundWindow(hwndMain), "SetForegroundWindow failed\n");