Lines Matching refs:startup
148 STARTUPINFO startup; in execNoWait() local
153 ZeroMemory(&startup, sizeof(startup)); in execNoWait()
154 startup.cb = sizeof(startup); in execNoWait()
155 startup.dwFlags = STARTF_USESHOWWINDOW; in execNoWait()
156 startup.wShowWindow = SW_SHOWDEFAULT; in execNoWait()
167 &startup, /* startup info, i.e. std handles */ in execNoWait()
182 STARTUPINFO startup; in execWait() local
187 ZeroMemory(&startup, sizeof(startup)); in execWait()
188 startup.cb = sizeof(startup); in execWait()
189 startup.dwFlags = STARTF_USESHOWWINDOW; in execWait()
190 startup.wShowWindow = SW_HIDE | SW_MINIMIZE; in execWait()
201 &startup, /* startup info, i.e. std handles */ in execWait()