Commit 6f21fe00 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Silence IShellLink::SetShowCmd for the case we support.

parent 7dc8caba
......@@ -1512,6 +1512,11 @@ static HRESULT WINAPI IShellLinkW_fnSetShowCmd(IShellLinkW * iface, INT iShowCmd
{
_ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface);
/* 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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment