2007-12-15 18:14:41 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS Kernel
|
|
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
|
|
* FILE: ntoskrnl/config/cmcheck.c
|
|
|
|
* PURPOSE: Configuration Manager - Hive and Key Validation
|
|
|
|
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
|
|
|
|
#include "ntoskrnl.h"
|
|
|
|
#define NDEBUG
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
/* GLOBALS *******************************************************************/
|
|
|
|
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
|
|
|
|
ULONG
|
|
|
|
NTAPI
|
|
|
|
CmCheckRegistry(IN PCMHIVE RegistryHive,
|
|
|
|
IN ULONG Flags)
|
|
|
|
{
|
|
|
|
/* FIXME: HACK! */
|
2014-05-30 20:40:02 +00:00
|
|
|
DPRINT1("CmCheckRegistry(0x%p, %lu) is UNIMPLEMENTED!\n", RegistryHive, Flags);
|
2007-12-15 18:14:41 +00:00
|
|
|
return 0;
|
|
|
|
}
|