Module: wine Branch: master Commit: 7ac3fe280f8f22ba0dc3fe4315bded6fbdc2d7ff URL: http://source.winehq.org/git/wine.git/?a=commit;h=7ac3fe280f8f22ba0dc3fe4315...
Author: Huw Davies huw@codeweavers.com Date: Fri May 22 15:13:15 2009 +0100
comdlg32/tests: PrintDlgExW returns E_NOTIMPL on some versions of winME.
---
dlls/comdlg32/tests/printdlg.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/dlls/comdlg32/tests/printdlg.c b/dlls/comdlg32/tests/printdlg.c index ec63da9..4e189ee 100644 --- a/dlls/comdlg32/tests/printdlg.c +++ b/dlls/comdlg32/tests/printdlg.c @@ -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());