setupapi/tests: Skip some tests on win9x.
This commit is contained in:
parent
53eacee0da
commit
d6f9de67b8
|
@ -965,6 +965,11 @@ static void testDeviceRegistryPropertyW()
|
|||
|
||||
SetLastError(0xdeadbeef);
|
||||
set = pSetupDiGetClassDevsW(&guid, NULL, 0, DIGCF_DEVICEINTERFACE);
|
||||
if (set == INVALID_HANDLE_VALUE && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
|
||||
{
|
||||
skip("W-functions are not implemented\n");
|
||||
return;
|
||||
}
|
||||
ok(set != INVALID_HANDLE_VALUE, "SetupDiGetClassDevsW failed: %08x\n",
|
||||
GetLastError());
|
||||
SetLastError(0xdeadbeef);
|
||||
|
|
Loading…
Reference in New Issue