From 095a5f4d402df4f5b23d8ca8e57126aa76ecf372 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Fri, 15 Nov 2002 00:02:36 +0000 Subject: [PATCH] Also silence IShellLinkA_fnSetShowCmd. --- dlls/shell32/shelllink.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dlls/shell32/shelllink.c b/dlls/shell32/shelllink.c index c26ac53292e..97e5cfc0dde 100644 --- a/dlls/shell32/shelllink.c +++ b/dlls/shell32/shelllink.c @@ -1261,7 +1261,12 @@ static HRESULT WINAPI IShellLinkA_fnSetShowCmd(IShellLinkA * iface, INT iShowCmd { ICOM_THIS(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; } static HRESULT WINAPI IShellLinkA_fnGetIconLocation(IShellLinkA * iface, LPSTR pszIconPath,INT cchIconPath,INT *piIcon)