From cc27de18f47e295f81e0c47f1f6f7a0dfec34468 Mon Sep 17 00:00:00 2001 From: Mark Jansen Date: Mon, 1 Oct 2018 20:47:01 +0200 Subject: [PATCH] [DMUSIC] Fix the build for vs 2010 --- dll/directx/wine/dmusic/dmobject.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/dll/directx/wine/dmusic/dmobject.c b/dll/directx/wine/dmusic/dmobject.c index d421c3fbef4..0183934f881 100644 --- a/dll/directx/wine/dmusic/dmobject.c +++ b/dll/directx/wine/dmusic/dmobject.c @@ -258,7 +258,11 @@ HRESULT WINAPI dmobj_IDirectMusicObject_SetDescriptor(IDirectMusicObject *iface, static inline void info_get_name(IStream *stream, const struct chunk_entry *info, DMUS_OBJECTDESC *desc) { +#ifndef __REACTOS__ struct chunk_entry chunk = {.parent = info}; +#else + struct chunk_entry chunk = { 0, 0, 0, {{0}}, info }; +#endif char name[DMUS_MAX_NAME]; ULONG len; HRESULT hr = E_FAIL; @@ -277,7 +281,11 @@ static inline void info_get_name(IStream *stream, const struct chunk_entry *info static inline void unfo_get_name(IStream *stream, const struct chunk_entry *unfo, DMUS_OBJECTDESC *desc, BOOL inam) { +#ifndef __REACTOS__ struct chunk_entry chunk = {.parent = unfo}; +#else + struct chunk_entry chunk = { 0, 0, 0, {{0}}, unfo }; +#endif while (stream_next_chunk(stream, &chunk) == S_OK) if (chunk.id == DMUS_FOURCC_UNAM_CHUNK || (inam && chunk.id == mmioFOURCC('I','N','A','M'))) @@ -288,7 +296,11 @@ static inline void unfo_get_name(IStream *stream, const struct chunk_entry *unfo HRESULT dmobj_parsedescriptor(IStream *stream, const struct chunk_entry *riff, DMUS_OBJECTDESC *desc, DWORD supported) { +#ifndef __REACTOS__ struct chunk_entry chunk = {.parent = riff}; +#else + struct chunk_entry chunk = { 0, 0, 0, {{0}}, riff }; +#endif HRESULT hr; TRACE("Looking for %#x in %p: %s\n", supported, stream, debugstr_chunk(riff));