Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
fe6451e2
Commit
fe6451e2
authored
Sep 24, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 24, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Fix compilation on systems that don't support nameless unions.
parent
ae3a919b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
pngformat.c
dlls/windowscodecs/pngformat.c
+3
-2
No files found.
dlls/windowscodecs/pngformat.c
View file @
fe6451e2
...
@@ -25,6 +25,7 @@
...
@@ -25,6 +25,7 @@
#include <png.h>
#include <png.h>
#endif
#endif
#define NONAMELESSUNION
#define COBJMACROS
#define COBJMACROS
#include "windef.h"
#include "windef.h"
...
@@ -129,9 +130,9 @@ static HRESULT LoadTextMetadata(IStream *stream, const GUID *preferred_vendor,
...
@@ -129,9 +130,9 @@ static HRESULT LoadTextMetadata(IStream *stream, const GUID *preferred_vendor,
value
[
value_len
]
=
0
;
value
[
value_len
]
=
0
;
result
[
0
].
id
.
vt
=
VT_LPSTR
;
result
[
0
].
id
.
vt
=
VT_LPSTR
;
result
[
0
].
id
.
pszVal
=
name
;
result
[
0
].
id
.
u
.
pszVal
=
name
;
result
[
0
].
value
.
vt
=
VT_LPSTR
;
result
[
0
].
value
.
vt
=
VT_LPSTR
;
result
[
0
].
value
.
pszVal
=
value
;
result
[
0
].
value
.
u
.
pszVal
=
value
;
*
items
=
result
;
*
items
=
result
;
*
item_count
=
1
;
*
item_count
=
1
;
...
...
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