dmscript: Clarify TRACE in IsParamSupported method of Script track.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2019-11-21 22:16:03 +01:00 committed by Alexandre Julliard
parent 8d32805dbc
commit cb4733e3b1
1 changed files with 5 additions and 6 deletions

View File

@ -139,14 +139,13 @@ static HRESULT WINAPI script_track_SetParam(IDirectMusicTrack8 *iface, REFGUID r
return S_OK;
}
static HRESULT WINAPI script_track_IsParamSupported(IDirectMusicTrack8 *iface, REFGUID rguidType)
static HRESULT WINAPI script_track_IsParamSupported(IDirectMusicTrack8 *iface, REFGUID type)
{
DirectMusicScriptTrack *This = impl_from_IDirectMusicTrack8(iface);
DirectMusicScriptTrack *This = impl_from_IDirectMusicTrack8(iface);
TRACE("(%p, %s)\n", This, debugstr_dmguid(rguidType));
/* didn't find any params */
TRACE("param unsupported\n");
return DMUS_E_TYPE_UNSUPPORTED;
TRACE("(%p, %s): param type not supported\n", This, debugstr_dmguid(type));
return DMUS_E_TYPE_UNSUPPORTED;
}
static HRESULT WINAPI script_track_AddNotificationType(IDirectMusicTrack8 *iface, REFGUID type)