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

oldstable
Francois Gouget 2013-10-06 00:22:29 +02:00 committed by Alexandre Julliard
parent d3cc10724e
commit 39f8c2201c
1 changed files with 3 additions and 3 deletions

View File

@ -483,9 +483,9 @@ static void test_inputdesktop(void)
INPUT inputs[1];
inputs[0].type = INPUT_KEYBOARD;
inputs[0].ki.wVk = 0;
inputs[0].ki.wScan = 0x3c0;
inputs[0].ki.dwFlags = KEYEVENTF_UNICODE;
U(inputs[0]).ki.wVk = 0;
U(inputs[0]).ki.wScan = 0x3c0;
U(inputs[0]).ki.dwFlags = KEYEVENTF_UNICODE;
/* OpenInputDesktop creates new handles for each calls */
old_input_desk = OpenInputDesktop(0, FALSE, DESKTOP_ALL_ACCESS);