Skip to content

Commit e54ee43

Browse files
committed
Revert "[LIVECD_EXTRAS] Add UltraVNC server"
This reverts commit d1eb12d.
1 parent a72a503 commit e54ee43

23 files changed

+0
-2614
lines changed

base/system/userinit/userinit.c

Lines changed: 0 additions & 41 deletions
Original file line numberDiff line numberDiff 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-
263223
static BOOL
264224
StartShell(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

707666
Restart:
708667
SetUserSettings();

modules/livecd_extras/Licence.rtf

Lines changed: 0 additions & 519 deletions
This file was deleted.
-103 KB
Binary file not shown.

modules/livecd_extras/Readme.txt

Lines changed: 0 additions & 341 deletions
This file was deleted.

0 commit comments

Comments
 (0)