[TASKMGR]
[reactos.git] / base / system / smss / initreg.c
1 /*
2 * PROJECT: ReactOS Session Manager
3 * LICENSE: GPL v2 or later - See COPYING in the top level directory
4 * FILE: base/system/smss/initreg.c
5 * PURPOSE: Hive loading.
6 * PROGRAMMERS: ReactOS Development Team
7 */
8
9 /* INCLUDES ******************************************************************/
10 #include "smss.h"
11
12 #define NDEBUG
13 #include <debug.h>
14
15 NTSTATUS
16 SmInitializeRegistry(VOID)
17 {
18 DPRINT("SM: %s: initializing registry\n", __FUNCTION__);
19
20 /* Load remaining registry hives */
21 return NtInitializeRegistry(CM_BOOT_FLAG_SMSS);
22 }
23
24 /* EOF */