Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b4b88b05
Commit
b4b88b05
authored
Jun 07, 2007
by
Paul Vriens
Committed by
Alexandre Julliard
Jun 07, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32/tests: Skip some not implemented functions on win98.
parent
1e178be8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
6 deletions
+18
-6
filedlg.c
dlls/comdlg32/tests/filedlg.c
+18
-6
No files found.
dlls/comdlg32/tests/filedlg.c
View file @
b4b88b05
...
...
@@ -72,10 +72,16 @@ static void test_DialogCancel(void)
ok
(
CDERR_INITIALIZATION
==
CommDlgExtendedError
(),
"expected %d, got %d
\n
"
,
CDERR_INITIALIZATION
,
CommDlgExtendedError
());
SetLastError
(
0xdeadbeef
);
result
=
GetOpenFileNameW
((
LPOPENFILENAMEW
)
&
ofn
);
ok
(
0
==
result
,
"expected %d, got %d
\n
"
,
0
,
result
);
ok
(
0
==
CommDlgExtendedError
(),
"expected %d, got %d
\n
"
,
0
,
CommDlgExtendedError
());
if
(
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
skip
(
"GetOpenFileNameW is not implemented
\n
"
);
else
{
ok
(
0
==
result
,
"expected %d, got %d
\n
"
,
0
,
result
);
ok
(
0
==
CommDlgExtendedError
(),
"expected %d, got %d
\n
"
,
0
,
CommDlgExtendedError
());
}
PrintDlgA
(
NULL
);
ok
(
CDERR_INITIALIZATION
==
CommDlgExtendedError
(),
"expected %d, got %d
\n
"
,
...
...
@@ -90,10 +96,16 @@ static void test_DialogCancel(void)
ok
(
CDERR_INITIALIZATION
==
CommDlgExtendedError
(),
"expected %d, got %d
\n
"
,
CDERR_INITIALIZATION
,
CommDlgExtendedError
());
SetLastError
(
0xdeadbeef
);
result
=
GetSaveFileNameW
((
LPOPENFILENAMEW
)
&
ofn
);
ok
(
0
==
result
,
"expected %d, got %d
\n
"
,
0
,
result
);
ok
(
0
==
CommDlgExtendedError
(),
"expected %d, got %d
\n
"
,
0
,
CommDlgExtendedError
());
if
(
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
skip
(
"GetSaveFileNameW is not implemented
\n
"
);
else
{
ok
(
0
==
result
,
"expected %d, got %d
\n
"
,
0
,
result
);
ok
(
0
==
CommDlgExtendedError
(),
"expected %d, got %d
\n
"
,
0
,
CommDlgExtendedError
());
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment