Lines Matching refs:startup
63 STARTUPINFO startup; in execNoWait() local
68 ZeroMemory(&startup, sizeof(startup)); in execNoWait()
69 startup.cb = sizeof(startup); in execNoWait()
70 startup.dwFlags = STARTF_USESHOWWINDOW; in execNoWait()
71 startup.wShowWindow = SW_SHOWDEFAULT; in execNoWait()
82 &startup, /* startup info, i.e. std handles */ in execNoWait()
97 STARTUPINFO startup; in execWait() local
102 ZeroMemory(&startup, sizeof(startup)); in execWait()
103 startup.cb = sizeof(startup); in execWait()
104 startup.dwFlags = STARTF_USESHOWWINDOW; in execWait()
105 startup.wShowWindow = SW_HIDE|SW_MINIMIZE; in execWait()
116 &startup, /* startup info, i.e. std handles */ in execWait()