Commit b164e4dc authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

schedsvc/tests: Recognize newer Windows 10's RPC version.

parent d28628e9
......@@ -115,7 +115,8 @@ START_TEST(rpcapi)
hr = SchRpcHighestVersion(&version);
ok(hr == S_OK, "expected S_OK, got %#x\n", hr);
ok(version == 0x10002 /* vista */ || version == 0x10003 /* win7 */ ||
version == 0x10004 /* win8 */ || version == 0x10005 /* win10 */,
version == 0x10004 /* win8 */ || version == 0x10005 /* win10 */ ||
version == 0x10006 /* win10 1709 */,
"wrong version %#x\n", version);
SetUnhandledExceptionFilter(old_exception_filter);
......
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