fixes
[reactos.git] / reactos / services / winlogon / init.c
1 /* $Id: init.c,v 1.2 1999/07/17 23:10:29 ea Exp $
2 *
3 * reactos/services/winlogon/init.c
4 *
5 */
6 #include <windows.h>
7
8 BOOL
9 Initialize(VOID)
10 {
11 /* SERVICES CONTROLLER */
12 NtCreateProcess(
13 L"\\\\??\\C:\\reactos\\system\\services.exe"
14 );
15 /* LOCAL SECURITY AUTORITY SUBSYSTEM */
16 NtCreateProcess(
17 L"\\\\??\\C:\\reactos\\system\\lsass.exe"
18 );
19 return TRUE;
20 }
21
22
23 /* EOF */