wmvcore: Return success from OpenStream().

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2019-05-03 14:53:32 +03:00 committed by Alexandre Julliard
parent 8c69a77032
commit 054f95e659
1 changed files with 1 additions and 1 deletions

View File

@ -2222,7 +2222,7 @@ static HRESULT WINAPI WMSyncReader_OpenStream(IWMSyncReader *iface, IStream *str
{
WMSyncReader *This = impl_from_IWMSyncReader(iface);
FIXME("(%p)->(%p): stub!\n", This, stream);
return E_NOTIMPL;
return S_OK;
}
static HRESULT WINAPI WMSyncReader_SetOutputProps(IWMSyncReader *iface, DWORD output_num, IWMOutputMediaProps *output)