Lines Matching refs:startup
947 STARTUPINFOW startup;
1056 startup.cb = sizeof(startup);
1057 startup.lpReserved = NULL;
1058 startup.lpDesktop = NULL;
1059 startup.lpTitle = NULL;
1060 startup.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
1062 startup.cbReserved2 = uv__stdio_size(process->child_stdio_buffer);
1063 startup.lpReserved2 = (BYTE*) process->child_stdio_buffer;
1065 startup.hStdInput = uv__stdio_handle(process->child_stdio_buffer, 0);
1066 startup.hStdOutput = uv__stdio_handle(process->child_stdio_buffer, 1);
1067 startup.hStdError = uv__stdio_handle(process->child_stdio_buffer, 2);
1084 startup.wShowWindow = SW_HIDE;
1086 startup.wShowWindow = SW_SHOWDEFAULT;
1111 &startup,