Home | History | Annotate | Download | only in deutil

Lines Matching refs:startInfo

631 	STARTUPINFO			startInfo;
653 deMemset(&startInfo, 0, sizeof(startInfo));
696 startInfo.cb = sizeof(startInfo);
697 startInfo
698 startInfo.hStdOutput = stdOutWrite;
699 startInfo.hStdInput = stdInRead;
700 startInfo.dwFlags |= STARTF_USESTDHANDLES;
702 if (!CreateProcess(DE_NULL, (LPTSTR)commandLine, DE_NULL, DE_NULL, TRUE /* inherit handles */, 0, DE_NULL, workingDirectory, &startInfo, &process->procInfo))