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:
parent
dda104587b
commit
7690a91a73
|
@ -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 =
|
||||||
|
|
Loading…
Reference in New Issue