Commit 27029819 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

setupapi/tests: Remove win9x hacks.

parent 9c84bfa9
......@@ -1530,21 +1530,7 @@ static void testSetupDiGetINFClassA(void)
START_TEST(devinst)
{
HDEVINFO set;
init_function_pointers();
/* Win9x/WinMe does things totally different so we skip all the tests
*
* We don't want to exclude NT4 so hence this check.
*/
SetLastError(0xdeadbeef);
set = pSetupDiGetClassDevsW(NULL, NULL, 0, 0);
if (set == INVALID_HANDLE_VALUE && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
{
win_skip("Win9x/WinMe has totally different behavior\n");
return;
}
init_function_pointers();
if (pIsWow64Process)
pIsWow64Process(GetCurrentProcess(), &is_wow64);
......
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