Home
last modified time | relevance | path

Searched refs:ShowCmd (Results 1 – 4 of 4) sorted by relevance

/reactos/dll/win32/wshom.ocx/
H A Dshell.c989 static HRESULT WINAPI WshShortcut_get_WindowStyle(IWshShortcut *iface, int *ShowCmd) in WshShortcut_get_WindowStyle() argument
992 TRACE("(%p)->(%p)\n", This, ShowCmd); in WshShortcut_get_WindowStyle()
993 return IShellLinkW_GetShowCmd(This->link, ShowCmd); in WshShortcut_get_WindowStyle()
996 static HRESULT WINAPI WshShortcut_put_WindowStyle(IWshShortcut *iface, int ShowCmd) in WshShortcut_put_WindowStyle() argument
999 TRACE("(%p)->(%d)\n", This, ShowCmd); in WshShortcut_put_WindowStyle()
1000 return IShellLinkW_SetShowCmd(This->link, ShowCmd); in WshShortcut_put_WindowStyle()
H A Dwshom.idl492 HRESULT WindowStyle([out, retval] int* ShowCmd);
495 HRESULT WindowStyle([in] int ShowCmd);
/reactos/modules/rostests/winetests/wshom/
H A Dwshom.idl492 HRESULT WindowStyle([out, retval] int* ShowCmd);
495 HRESULT WindowStyle([in] int ShowCmd);
/reactos/win32ss/user/winsrv/consrv/
H A Dconsole.c429 INT ShowCmd = 0; in LoadShellLinkConsoleInfo() local
439 hRes = IShellLinkW_GetShowCmd(pshl, &ShowCmd); in LoadShellLinkConsoleInfo()
440 … if (SUCCEEDED(hRes)) ConsoleInitInfo->ConsoleStartInfo->wShowWindow = (WORD)ShowCmd; in LoadShellLinkConsoleInfo()