From aecd9c120190c47e3451f8f424caf91a0d983735 Mon Sep 17 00:00:00 2001 From: Christian Costa Date: Mon, 14 May 2012 08:11:46 +0200 Subject: [PATCH] dmsynth: Implement IDirectMusicSynth8_GetAppend. --- dlls/dmsynth/synth.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dlls/dmsynth/synth.c b/dlls/dmsynth/synth.c index e5d5e1c89b9..d5288b41ad5 100644 --- a/dlls/dmsynth/synth.c +++ b/dlls/dmsynth/synth.c @@ -258,9 +258,10 @@ static HRESULT WINAPI IDirectMusicSynth8Impl_GetFormat(LPDIRECTMUSICSYNTH8 iface static HRESULT WINAPI IDirectMusicSynth8Impl_GetAppend(LPDIRECTMUSICSYNTH8 iface, DWORD* append) { - IDirectMusicSynth8Impl *This = impl_from_IDirectMusicSynth8(iface); + TRACE("(%p)->(%p)\n", iface, append); - FIXME("(%p)->(%p): stub\n", This, append); + /* We don't need extra space at the end of buffers passed to us for now */ + *append = 0; return S_OK; }