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

This commit is contained in:
Francois Gouget 2012-01-15 21:08:06 +01:00 committed by Alexandre Julliard
parent 6522393265
commit 259153001f

View File

@ -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;