comdlg32/tests: PrintDlgExW returns E_NOTIMPL on some versions of winME.
This commit is contained in:
parent
628a8743d2
commit
7ac3fe280f
|
@ -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());
|
||||
|
|
Loading…
Reference in New Issue