shell32: Fake success in propertystore_[SetValue|Commit].

Signed-off-by: Gijs Vermeulen <gijsvrm@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Guillaume Gill 2018-05-04 14:53:45 +02:00 committed by Alexandre Julliard
parent e6f6e7ebda
commit 794d30dca6
1 changed files with 2 additions and 2 deletions

View File

@ -2664,14 +2664,14 @@ static HRESULT WINAPI propertystore_SetValue(IPropertyStore *iface, REFPROPERTYK
{
IShellLinkImpl *This = impl_from_IPropertyStore(iface);
FIXME("(%p)->(%p %p): stub\n", This, key, value);
return E_NOTIMPL;
return S_OK;
}
static HRESULT WINAPI propertystore_Commit(IPropertyStore *iface)
{
IShellLinkImpl *This = impl_from_IPropertyStore(iface);
FIXME("(%p): stub\n", This);
return E_NOTIMPL;
return S_OK;
}
static const IPropertyStoreVtbl propertystorevtbl = {