Create this branch to work on loading of different Kernel-Debugger DLL providers...
[reactos.git] / ntoskrnl / config / cmnotify.c
1 /*
2 * PROJECT: ReactOS Kernel
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: ntoskrnl/config/cmwraprs.c
5 * PURPOSE: Configuration Manager - Wrappers for Hive Operations
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 /* FUNCTIONS *****************************************************************/
16
17 VOID
18 NTAPI
19 CmpReportNotify(IN PCM_KEY_CONTROL_BLOCK Kcb,
20 IN PHHIVE Hive,
21 IN HCELL_INDEX Cell,
22 IN ULONG Filter)
23 {
24 /* FIXME: TODO */
25 return;
26 }
27
28 VOID
29 NTAPI
30 CmpFlushNotify(IN PCM_KEY_BODY KeyBody,
31 IN BOOLEAN LockHeld)
32 {
33 /* FIXME: TODO */
34 return;
35 }
36