windowscodecs: Fix compilation on systems that don't support nameless unions.

Francois Gouget fgouget at free.fr
Sun Jan 15 14:08:06 CST 2012


---
 dlls/windowscodecs/metadatahandler.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/windowscodecs/metadatahandler.c b/dlls/windowscodecs/metadatahandler.c
index 23854d8..114c3af 100644
--- a/dlls/windowscodecs/metadatahandler.c
+++ b/dlls/windowscodecs/metadatahandler.c
@@ -21,6 +21,7 @@
 #include <stdarg.h>
 
 #define COBJMACROS
+#define NONAMELESSUNION
 
 #include "windef.h"
 #include "winbase.h"
@@ -567,8 +568,8 @@ static HRESULT LoadUnknownMetadata(IStream *input, const GUID *preferred_vendor,
     PropVariantInit(&result[0].value);
 
     result[0].value.vt = VT_BLOB;
-    result[0].value.blob.cbSize = bytesread;
-    result[0].value.blob.pBlobData = data;
+    result[0].value.u.blob.cbSize = bytesread;
+    result[0].value.u.blob.pBlobData = data;
 
     *items = result;
     *item_count = 1;
-- 
1.7.7.3




More information about the wine-patches mailing list