Commit 7ac3fe28 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

comdlg32/tests: PrintDlgExW returns E_NOTIMPL on some versions of winME.

parent 628a8743
......@@ -246,6 +246,11 @@ static void test_PrintDlgExW(void)
PrintDlg(NULL);
SetLastError(0xdeadbeef);
res = pPrintDlgExW(NULL);
if(res == E_NOTIMPL)
{
win_skip("PrintDlgExW returns not implemented\n");
return;
}
ok( (res == E_INVALIDARG),
"got 0x%x with %u and %u (expected 'E_INVALIDARG')\n",
res, GetLastError(), CommDlgExtendedError());
......
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