Silence IShellLink::SetShowCmd for the case we support.

This commit is contained in:
Marcus Meissner 2002-11-12 23:25:33 +00:00 committed by Alexandre Julliard
parent 7dc8cabad7
commit 6f21fe0044
1 changed files with 6 additions and 1 deletions

View File

@ -1512,7 +1512,12 @@ static HRESULT WINAPI IShellLinkW_fnSetShowCmd(IShellLinkW * iface, INT iShowCmd
{
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
FIXME("(%p)->(showcmd=%x)\n",This, iShowCmd);
/* SW_SHOWNORMAL is the default ... The others would have
* to be somehow passed through the link file ... We can't
* do that currently.
*/
if (iShowCmd != SW_SHOWNORMAL)
FIXME("(%p)->(showcmd=%x)\n",This, iShowCmd);
return NOERROR;
}