shell32: Return S_OK from IShellLink::SetFlags() stub.

Signed-off-by: Dmitry Timoshkov <dmitry@baikal.ru>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Dmitry Timoshkov 2020-12-22 17:38:00 +03:00 committed by Alexandre Julliard
parent dda104587b
commit 7690a91a73
1 changed files with 1 additions and 1 deletions

View File

@ -2297,7 +2297,7 @@ static HRESULT WINAPI
ShellLink_SetFlags( IShellLinkDataList* iface, DWORD dwFlags ) ShellLink_SetFlags( IShellLinkDataList* iface, DWORD dwFlags )
{ {
FIXME("(%p)->(%u): stub\n", iface, dwFlags); FIXME("(%p)->(%u): stub\n", iface, dwFlags);
return E_NOTIMPL; return S_OK;
} }
static const IShellLinkDataListVtbl dlvt = static const IShellLinkDataListVtbl dlvt =