user32/tests: Fix input test failure in win9x platforms.
This commit is contained in:
parent
85a5867308
commit
e4106b6273
|
@ -1122,7 +1122,10 @@ static void test_Input_unicode(void)
|
||||||
wclass.lpszMenuName = 0;
|
wclass.lpszMenuName = 0;
|
||||||
wclass.cbClsExtra = 0;
|
wclass.cbClsExtra = 0;
|
||||||
wclass.cbWndExtra = 0;
|
wclass.cbWndExtra = 0;
|
||||||
RegisterClassW(&wclass);
|
if(!RegisterClassW(&wclass)){
|
||||||
|
win_skip("Unicode functions not supported\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
/* create the test window that will receive the keystrokes */
|
/* create the test window that will receive the keystrokes */
|
||||||
hWndTest = CreateWindowW(wclass.lpszClassName, windowNameW,
|
hWndTest = CreateWindowW(wclass.lpszClassName, windowNameW,
|
||||||
WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, 0, 100, 100,
|
WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, 0, 100, 100,
|
||||||
|
|
Loading…
Reference in New Issue