wmvcore: Return S_OK from WMCreateReader.

This commit is contained in:
Nikolay Sivov 2015-03-18 22:52:55 +03:00 committed by Alexandre Julliard
parent ba48217429
commit 069406fe94
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ HRESULT WINAPI WMCreateReader(IUnknown *reserved, DWORD rights, IWMReader **ret_
reader->ref = 1;
*ret_reader = &reader->IWMReader_iface;
return E_NOTIMPL;
return S_OK;
}
HRESULT WINAPI WMCreateSyncReader(IUnknown *pcert, DWORD rights, IWMSyncReader **syncreader)