Create a branch for Aleksandar Andrejevic for his work on NTVDM. See http://jira...
[reactos.git] / ntoskrnl / config / cmcheck.c
1 /*
2 * PROJECT: ReactOS Kernel
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: ntoskrnl/config/cmcheck.c
5 * PURPOSE: Configuration Manager - Hive and Key Validation
6 * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 #include "ntoskrnl.h"
12 #define NDEBUG
13 #include "debug.h"
14
15 /* GLOBALS *******************************************************************/
16
17 /* FUNCTIONS *****************************************************************/
18
19 ULONG
20 NTAPI
21 CmCheckRegistry(IN PCMHIVE RegistryHive,
22 IN ULONG Flags)
23 {
24 /* FIXME: HACK! */
25 return 0;
26 }