ShellExecuteEx 阻塞和异步调用进程的两种方法
Posted 阿兴
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ShellExecuteEx 阻塞和异步调用进程的两种方法相关的知识,希望对你有一定的参考价值。
阻塞:
SHELLEXECUTEINFO ShExecInfo = { 0 };
ShExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
ShExecInfo.fMask = SEE_MASK_NOCLOSEPROCESS;
ShExecInfo.hwnd = NULL;
ShExecInfo.lpVerb = NULL;
ShExecInfo.lpFile = (LPCWSTR)newAppPath.utf16(); // _telegramPath.toLocal8Bit().constData();
ShExecInfo.lpParameters = L"";
ShExecInfo.lpDirectory = NULL;
ShExecInfo.nShow = SW_SHOWNORMAL;
ShExecInfo.hInstApp = NULL;
ShellExecuteEx(&ShExecInfo);
WaitForSingleObject(ShExecInfo.hProcess, INFINITE);
异步:
ShellExecuteA(NULL, "open", _telegramPath.toLocal8Bit().data(),telegramStartParm.c_str(), NULL, SW_SHOWNORMAL);
备注:SW_SHOWNORMAL表示管理员权限调用
以上是关于ShellExecuteEx 阻塞和异步调用进程的两种方法的主要内容,如果未能解决你的问题,请参考以下文章