wmp: Fake success in IWMPMedia::getItemInfo.
Signed-off-by: Gijs Vermeulen <gijsvrm@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
bf3d719d08
commit
eccd8c5424
|
@ -1874,11 +1874,11 @@ static HRESULT WINAPI WMPMedia_getAttributeName(IWMPMedia *iface, LONG lIndex, B
|
|||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI WMPMedia_getItemInfo(IWMPMedia *iface, BSTR bstrItemName, BSTR *pbstrVal)
|
||||
static HRESULT WINAPI WMPMedia_getItemInfo(IWMPMedia *iface, BSTR item_name, BSTR *value)
|
||||
{
|
||||
WMPMedia *This = impl_from_IWMPMedia(iface);
|
||||
FIXME("(%p)->(%s, %p)\n", This, debugstr_w(bstrItemName), pbstrVal);
|
||||
return E_NOTIMPL;
|
||||
FIXME("(%p)->(%s, %p)\n", This, debugstr_w(item_name), value);
|
||||
return return_bstr(NULL, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI WMPMedia_setItemInfo(IWMPMedia *iface, BSTR bstrItemName, BSTR bstrVal)
|
||||
|
|
Loading…
Reference in New Issue