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
6f1326fa
Commit
6f1326fa
authored
Aug 29, 2010
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 30, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32/tests: Fix compilation on systems that don't support nameless unions.
parent
b462bc22
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
shlfolder.c
dlls/shell32/tests/shlfolder.c
+4
-4
No files found.
dlls/shell32/tests/shlfolder.c
View file @
6f1326fa
...
...
@@ -3652,13 +3652,13 @@ static void r_verify_pidl(unsigned l, LPCITEMIDLIST pidl, const WCHAR *path)
ok_
(
__FILE__
,
l
)(
filename
.
uType
==
STRRET_WSTR
||
filename
.
uType
==
STRRET_CSTR
,
"Got unexpected string type: %d
\n
"
,
filename
.
uType
);
if
(
filename
.
uType
==
STRRET_WSTR
){
ok_
(
__FILE__
,
l
)(
lstrcmpW
(
path
,
filename
.
pOleStr
)
==
0
,
ok_
(
__FILE__
,
l
)(
lstrcmpW
(
path
,
U
(
filename
)
.
pOleStr
)
==
0
,
"didn't get expected path (%s), instead: %s
\n
"
,
wine_dbgstr_w
(
path
),
wine_dbgstr_w
(
filename
.
pOleStr
));
wine_dbgstr_w
(
path
),
wine_dbgstr_w
(
U
(
filename
)
.
pOleStr
));
}
else
if
(
filename
.
uType
==
STRRET_CSTR
){
ok_
(
__FILE__
,
l
)(
strcmp_wa
(
path
,
filename
.
cStr
)
==
0
,
ok_
(
__FILE__
,
l
)(
strcmp_wa
(
path
,
U
(
filename
)
.
cStr
)
==
0
,
"didn't get expected path (%s), instead: %s
\n
"
,
wine_dbgstr_w
(
path
),
filename
.
cStr
);
wine_dbgstr_w
(
path
),
U
(
filename
)
.
cStr
);
}
IShellFolder_Release
(
parent
);
...
...
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