Lines Matching refs:ei
578 SHELLEXECUTEINFO ei;
582 memset(&ei, 0, sizeof(ei));
583 ei.cbSize = sizeof(ei);
584 ei.lpFile = path;
585 ei.fMask = SEE_MASK_NOCLOSEPROCESS
592 ei.lpParameters = cmdLineParams;
593 ei.nShow = SW_SHOWNORMAL; /* SW_HIDE; */
594 success = ShellExecuteEx(&ei);
595 executeRes = (UINT32)(UINT_PTR)ei.hInstApp;
599 hProcess = ei.hProcess;