Searched refs:shexinfo (Results 1 – 3 of 3) sorted by relevance
190 SHELLEXECUTEINFO shexinfo; in launch_entry() local192 shexinfo.cbSize = sizeof(SHELLEXECUTEINFO); in launch_entry()194 shexinfo.hwnd = hwnd; in launch_entry()195 shexinfo.lpVerb = NULL; in launch_entry()196 shexinfo.lpFile = NULL; in launch_entry()197 shexinfo.lpParameters = NULL; in launch_entry()198 shexinfo.lpDirectory = NULL; in launch_entry()199 shexinfo.nShow = nCmdShow; in launch_entry()202 shexinfo.lpIDList = &*shell_path; in launch_entry()205 SHAddToRecentDocs(SHARD_PIDL, shexinfo.lpIDList); in launch_entry()[all …]
597 SHELLEXECUTEINFO shexinfo; in InvokeCommand() local599 memset(&shexinfo, 0x0, sizeof(shexinfo)); in InvokeCommand()601 shexinfo.cbSize = sizeof(shexinfo); in InvokeCommand()602 shexinfo.fMask = SEE_MASK_IDLIST; in InvokeCommand()603 shexinfo.lpVerb = _T("open"); in InvokeCommand()604 shexinfo.lpIDList = m_pidl; in InvokeCommand()605 shexinfo.nShow = SW_SHOW; in InvokeCommand()607 if (!ShellExecuteEx(&shexinfo)) in InvokeCommand()
1326 SHELLEXECUTEINFO shexinfo; in ActivateEntry() local1328 shexinfo.cbSize = sizeof(SHELLEXECUTEINFO); in ActivateEntry()1330 shexinfo.hwnd = hparent; in ActivateEntry()1331 shexinfo.lpVerb = NULL; in ActivateEntry()1332 shexinfo.lpFile = NULL; in ActivateEntry()1333 shexinfo.lpParameters = NULL; in ActivateEntry()1334 shexinfo.lpDirectory = NULL; in ActivateEntry()1335 shexinfo.nShow = SW_SHOWNORMAL; in ActivateEntry()1337 shexinfo.lpIDList = &*shell_path; in ActivateEntry()1340 SHAddToRecentDocs(SHARD_PIDL, shexinfo.lpIDList); in ActivateEntry()[all …]