Lines Matching defs:execInfo
267 SHELLEXECUTEINFO execInfo;
268 execInfo.cbSize = sizeof(execInfo);
269 execInfo.fMask = SEE_MASK_NOCLOSEPROCESS
274 execInfo.hwnd = NULL;
275 execInfo.lpVerb = NULL;
276 execInfo.lpFile = filePath;
286 execInfo.lpParameters = NULL;
288 execInfo.lpParameters = parametersSys;
290 execInfo.lpDirectory = NULL;
291 execInfo.nShow = SW_SHOWNORMAL;
292 execInfo.hProcess = NULL;
293 /* BOOL success = */ ::ShellExecuteEx(&execInfo);
294 UINT32 result = (UINT32)(UINT_PTR)execInfo.hInstApp;
301 hProcess = execInfo.hProcess;