Commit dcb438eb authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

dmusic: Fake success in two stub midi port methods.

parent 44551cfe
......@@ -977,7 +977,7 @@ static HRESULT WINAPI midi_IDirectMusicPort_SetReadNotificationHandle(IDirectMus
{
FIXME("(%p, %p) stub!\n", iface, event);
return E_NOTIMPL;
return S_OK;
}
static HRESULT WINAPI midi_IDirectMusicPort_Read(IDirectMusicPort *iface,
......@@ -1164,7 +1164,7 @@ static HRESULT WINAPI midi_IDirectMusicThru_ThruChannel(IDirectMusicThru *iface,
FIXME("(%p, %u, %u, %u, %u, %p) stub!\n", iface, src_group, src_channel, dest_group,
dest_channel, dest_port);
return E_NOTIMPL;
return S_OK;
}
static const IDirectMusicThruVtbl midi_thru_vtbl = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment