Lines Matching refs:si
242 STARTUPINFO si;
256 ZeroMemory(&si, sizeof(STARTUPINFO));
257 si.cb = sizeof(STARTUPINFO);
258 GetStartupInfo(&si);
259 si.hStdError = hSubWrite;
260 si.hStdOutput = hSubWrite;
261 si.hStdInput = hSubRead;
262 si.wShowWindow = SW_HIDE;
263 si.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
271 if (!CreateProcess(_T(exePath.c_str()), _T(buffer), NULL, NULL, true, NULL, NULL, NULL, &si, &pi)) {