Commit 794d30dc authored by Guillaume Gill's avatar Guillaume Gill Committed by Alexandre Julliard

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

parent e6f6e7eb
......@@ -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 = {
......
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