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

This commit is contained in:
Huw Davies 2009-05-22 15:13:15 +01:00 committed by Alexandre Julliard
parent 628a8743d2
commit 7ac3fe280f
1 changed files with 5 additions and 0 deletions

View File

@ -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());