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
23251266
Commit
23251266
authored
Aug 15, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs/tests: Use nameless unions/structs.
parent
df20791b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
metadata.c
dlls/windowscodecs/tests/metadata.c
+4
-4
No files found.
dlls/windowscodecs/tests/metadata.c
View file @
23251266
...
...
@@ -721,13 +721,13 @@ static void test_metadata_hIST(void)
PropVariantClear
(
&
schema
);
ok
(
id
.
vt
==
VT_LPWSTR
,
"unexpected vt: %i
\n
"
,
id
.
vt
);
ok
(
!
lstrcmpW
(
U
(
id
).
pwszVal
,
Frequencies
),
"unexpected value: %s
\n
"
,
wine_dbgstr_w
(
U
(
id
)
.
pwszVal
));
ok
(
!
lstrcmpW
(
id
.
pwszVal
,
Frequencies
),
"unexpected value: %s
\n
"
,
wine_dbgstr_w
(
id
.
pwszVal
));
PropVariantClear
(
&
id
);
ok
(
value
.
vt
==
(
VT_UI2
|
VT_VECTOR
),
"unexpected vt: %i
\n
"
,
value
.
vt
);
ok
(
20
==
U
(
value
).
caui
.
cElems
,
"expected cElems %d, got %ld
\n
"
,
20
,
U
(
value
)
.
caub
.
cElems
);
for
(
i
=
0
;
i
<
U
(
value
)
.
caui
.
cElems
;
i
++
)
ok
(
i
+
1
==
U
(
value
).
caui
.
pElems
[
i
],
"%u: expected value %u, got %u
\n
"
,
i
,
i
+
1
,
U
(
value
)
.
caui
.
pElems
[
i
]);
ok
(
20
==
value
.
caui
.
cElems
,
"expected cElems %d, got %ld
\n
"
,
20
,
value
.
caub
.
cElems
);
for
(
i
=
0
;
i
<
value
.
caui
.
cElems
;
i
++
)
ok
(
i
+
1
==
value
.
caui
.
pElems
[
i
],
"%u: expected value %u, got %u
\n
"
,
i
,
i
+
1
,
value
.
caui
.
pElems
[
i
]);
PropVariantClear
(
&
value
);
IWICMetadataReader_Release
(
reader
);
...
...
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