File tree Expand file tree Collapse file tree 23 files changed +0
-2614
lines changed
Expand file tree Collapse file tree 23 files changed +0
-2614
lines changed Original file line number Diff line number Diff line change @@ -220,46 +220,6 @@ StartProcess(
220220 return TRUE;
221221}
222222
223- static BOOL
224- StartProcessWait (
225- IN LPCWSTR CommandLine )
226- {
227- STARTUPINFO si ;
228- PROCESS_INFORMATION pi ;
229- WCHAR ExpandedCmdLine [MAX_PATH ];
230-
231- TRACE ("(%s)\n" , debugstr_w (CommandLine ));
232-
233- ExpandEnvironmentStringsW (CommandLine , ExpandedCmdLine , ARRAYSIZE (ExpandedCmdLine ));
234-
235- ZeroMemory (& si , sizeof (si ));
236- si .cb = sizeof (si );
237- si .dwFlags = STARTF_USESHOWWINDOW ;
238- si .wShowWindow = SW_SHOWNORMAL ;
239- ZeroMemory (& pi , sizeof (pi ));
240-
241- if (!CreateProcessW (NULL ,
242- ExpandedCmdLine ,
243- NULL ,
244- NULL ,
245- FALSE,
246- NORMAL_PRIORITY_CLASS ,
247- NULL ,
248- NULL ,
249- & si ,
250- & pi ))
251- {
252- WARN ("CreateProcessW() failed with error %lu\n" , GetLastError ());
253- return FALSE;
254- }
255-
256- WaitForSingleObject (pi .hProcess , INFINITE );
257-
258- CloseHandle (pi .hProcess );
259- CloseHandle (pi .hThread );
260- return TRUE;
261- }
262-
263223static BOOL
264224StartShell (VOID )
265225{
@@ -702,7 +662,6 @@ wWinMain(IN HINSTANCE hInst,
702662 hInstance = hInst ;
703663
704664 bIsLiveCD = IsLiveCD ();
705- StartProcessWait (L"cmd /C \\extras\\startup.cmd" );
706665
707666Restart :
708667 SetUserSettings ();
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments