Lines Matching refs:execInfo
264 SHELLEXECUTEINFO execInfo; in WinMain() local
265 execInfo.cbSize = sizeof(execInfo); in WinMain()
266 execInfo.fMask = SEE_MASK_NOCLOSEPROCESS in WinMain()
271 execInfo.hwnd = NULL; in WinMain()
272 execInfo.lpVerb = NULL; in WinMain()
273 execInfo.lpFile = filePath; in WinMain()
283 execInfo.lpParameters = NULL; in WinMain()
285 execInfo.lpParameters = parametersSys; in WinMain()
287 execInfo.lpDirectory = NULL; in WinMain()
288 execInfo.nShow = SW_SHOWNORMAL; in WinMain()
289 execInfo.hProcess = 0; in WinMain()
290 /* BOOL success = */ ::ShellExecuteEx(&execInfo); in WinMain()
291 UINT32 result = (UINT32)(UINT_PTR)execInfo.hInstApp; in WinMain()
298 hProcess = execInfo.hProcess; in WinMain()