Module: wine Branch: master Commit: 794d30dca65843baee7e0cd5f054e1b1fbe96a95 URL: https://source.winehq.org/git/wine.git/?a=commit;h=794d30dca65843baee7e0cd5f...
Author: Guillaume Gill gillg02@petitchinois.net Date: Fri May 4 14:53:45 2018 +0200
shell32: Fake success in propertystore_[SetValue|Commit].
Signed-off-by: Gijs Vermeulen gijsvrm@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/shell32/shelllink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/shell32/shelllink.c b/dlls/shell32/shelllink.c index 6dca9ac..07c83d1 100644 --- a/dlls/shell32/shelllink.c +++ b/dlls/shell32/shelllink.c @@ -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 = {