dmsynth: Display more info in IDirectMusicSynth8Impl_Download stub.

This commit is contained in:
Christian Costa 2012-05-14 08:11:55 +02:00 committed by Alexandre Julliard
parent aecd9c1201
commit e5b9d0dffc
1 changed files with 43 additions and 0 deletions

View File

@ -123,9 +123,52 @@ static HRESULT WINAPI IDirectMusicSynth8Impl_SetNumChannelGroups(LPDIRECTMUSICSY
static HRESULT WINAPI IDirectMusicSynth8Impl_Download(LPDIRECTMUSICSYNTH8 iface, LPHANDLE hDownload, LPVOID data, LPBOOL free)
{
IDirectMusicSynth8Impl *This = impl_from_IDirectMusicSynth8(iface);
DMUS_DOWNLOADINFO* info = (DMUS_DOWNLOADINFO*)data;
FIXME("(%p)->(%p, %p, %p): stub\n", This, hDownload, data, free);
if (!hDownload || !data || !free)
return E_POINTER;
if (TRACE_ON(dmsynth))
{
TRACE("Dump DMUS_DOWNLOADINFO struct:\n");
TRACE(" - dwDLType = %u\n", info->dwDLType);
TRACE(" - dwDLId = %u\n", info->dwDLId);
TRACE(" - dwNumOffsetTableEntries = %u\n", info->dwNumOffsetTableEntries);
TRACE(" - cbSize = %u\n", info->cbSize);
}
if (info->dwDLType == DMUS_DOWNLOADINFO_INSTRUMENT)
{
FIXME("Download type DMUS_DOWNLOADINFO_INSTRUMENT not yet supported\n");
}
else if (info->dwDLType == DMUS_DOWNLOADINFO_WAVE)
{
FIXME("Download type DMUS_DOWNLOADINFO_WAVE not yet supported\n");
}
else if (info->dwDLType == DMUS_DOWNLOADINFO_INSTRUMENT2)
{
FIXME("Download type DMUS_DOWNLOADINFO_INSTRUMENT2 not yet supported\n");
}
else if (info->dwDLType == DMUS_DOWNLOADINFO_WAVEARTICULATION)
{
FIXME("Download type DMUS_DOWNLOADINFO_WAVEARTICULATION not yet supported\n");
}
else if (info->dwDLType == DMUS_DOWNLOADINFO_STREAMINGWAVE)
{
FIXME("Download type DMUS_DOWNLOADINFO_STREAMINGWAVE not yet supported\n");
}
else if (info->dwDLType == DMUS_DOWNLOADINFO_ONESHOTWAVE)
{
FIXME("Download type DMUS_DOWNLOADINFO_ONESHOTWAVE not yet supported\n");
}
else
{
WARN("Unknown download type %u\n", info->dwDLType);
return DMUS_E_UNKNOWNDOWNLOAD;
}
return S_OK;
}