2008-09-23 10:47:10 +00:00
|
|
|
/*
|
|
|
|
* 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
|
2005-05-22 16:10:10 +00:00
|
|
|
*/
|
|
|
|
|
2008-09-23 10:47:10 +00:00
|
|
|
/* INCLUDES ******************************************************************/
|
2005-05-22 16:10:10 +00:00
|
|
|
#include "smss.h"
|
|
|
|
|
|
|
|
#define NDEBUG
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
NTSTATUS
|
|
|
|
SmInitializeRegistry(VOID)
|
|
|
|
{
|
|
|
|
DPRINT("SM: %s: initializing registry\n", __FUNCTION__);
|
|
|
|
|
|
|
|
/* Load remaining registry hives */
|
2007-12-02 18:40:33 +00:00
|
|
|
return NtInitializeRegistry(CM_BOOT_FLAG_SMSS);
|
2005-05-22 16:10:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* EOF */
|