Sync to trunk head(r38096)
[reactos.git] / reactos / base / system / lsass / lsass.c
1 /*
2 * reactos/subsys/system/lsass/lsass.c
3 *
4 * ReactOS Operating System
5 *
6 * --------------------------------------------------------------------
7 *
8 * This software is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of the
11 * License, or (at your option) any later version.
12 *
13 * This software is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this software; see the file COPYING.LIB. If not, write
20 * to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
21 * MA 02139, USA.
22 *
23 * --------------------------------------------------------------------
24 *
25 * 19990704 (Emanuele Aliberti)
26 * Compiled successfully with egcs 1.1.2
27 */
28 #define WIN32_NO_STATUS
29 #include <windows.h>
30 #define NTOS_MODE_USER
31 #include <ndk/ntndk.h>
32
33 #include <lsass/lsasrv.h>
34 //#include <samsrv.h>
35 #include <lsass/lsass.h>
36
37 #define NDEBUG
38 #include <debug.h>
39
40 INT WINAPI
41 wWinMain(
42 IN HINSTANCE hInstance,
43 IN HINSTANCE hPrevInstance,
44 IN LPWSTR lpCmdLine,
45 IN INT nShowCmd)
46 {
47 NTSTATUS Status = STATUS_SUCCESS;
48
49 DPRINT("Local Security Authority Subsystem\n");
50 DPRINT(" Initializing...\n");
51
52 /* Initialize the LSA server DLL. */
53 Status = LsapInitLsa();
54 if (!NT_SUCCESS(Status))
55 {
56 DPRINT1("LsapInitLsa() failed (Status 0x%08lX)\n", Status);
57 goto ByeBye;
58 }
59
60 #if 0
61 /* Initialize the SAM server DLL. */
62 Status = SamIInitialize();
63 if (!NT_SUCCESS(Status))
64 {
65 DPRINT1("SamIInitialize() failed (Status 0x%08lX)\n", Status);
66 goto ByeBye;
67 }
68 #endif
69
70 /* FIXME: More initialization */
71
72 DPRINT(" Done...\n");
73
74 ByeBye:
75 NtTerminateThread(NtCurrentThread(), Status);
76
77 return 0;
78 }
79
80 /* EOF */