Lines Matching refs:startup
918 STARTUPINFOW startup;
1028 startup.cb = sizeof(startup);
1029 startup.lpReserved = NULL;
1030 startup.lpDesktop = NULL;
1031 startup.lpTitle = NULL;
1032 startup.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
1034 startup.cbReserved2 = uv__stdio_size(child_stdio_buffer);
1035 startup.lpReserved2 = (BYTE*) child_stdio_buffer;
1037 startup.hStdInput = uv__stdio_handle(child_stdio_buffer, 0);
1038 startup.hStdOutput = uv__stdio_handle(child_stdio_buffer, 1);
1039 startup.hStdError = uv__stdio_handle(child_stdio_buffer, 2);
1056 startup.wShowWindow = SW_HIDE;
1058 startup.wShowWindow = SW_SHOWDEFAULT;
1084 &startup,