Commit e4106b62 authored by Andrew Eikum's avatar Andrew Eikum Committed by Alexandre Julliard

user32/tests: Fix input test failure in win9x platforms.

parent 85a58673
......@@ -1122,7 +1122,10 @@ static void test_Input_unicode(void)
wclass.lpszMenuName = 0;
wclass.cbClsExtra = 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 */
hWndTest = CreateWindowW(wclass.lpszClassName, windowNameW,
WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, 0, 100, 100,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment