Home | History | Annotate | Download | only in execserver

Lines Matching refs:startInfo

515 		STARTUPINFO			startInfo;
517 deMemset(&startInfo, 0, sizeof(startInfo));
535 startInfo.cb = sizeof(startInfo);
536 startInfo.hStdError = stdErrWrite;
537 startInfo.hStdOutput = stdOutWrite;
538 startInfo.hStdInput = stdInRead;
539 startInfo.dwFlags |= STARTF_USESTDHANDLES;
541 if (!CreateProcess(DE_NULL, (LPTSTR)commandLine, DE_NULL, DE_NULL, TRUE /* inherit handles */, 0, DE_NULL, workingDirectory, &startInfo, &m_procInfo))