mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
24 lines
588 B
C
24 lines
588 B
C
/*
|
|
* PROJECT: ReactOS Session Manager
|
|
* LICENSE: GPL v2 or later - See COPYING in the top level directory
|
|
* FILE: base/system/smss/initreg.c
|
|
* PURPOSE: Hive loading.
|
|
* PROGRAMMERS: ReactOS Development Team
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
#include "smss.h"
|
|
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
NTSTATUS
|
|
SmInitializeRegistry(VOID)
|
|
{
|
|
DPRINT("SM: %s: initializing registry\n", __FUNCTION__);
|
|
|
|
/* Load remaining registry hives */
|
|
return NtInitializeRegistry(CM_BOOT_FLAG_SMSS);
|
|
}
|
|
|
|
/* EOF */
|