2010-03-31 14:10:24 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS Kernel
|
|
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
2015-10-04 11:54:25 +00:00
|
|
|
* FILE: ntoskrnl/config/cmnotify.c
|
2010-03-31 14:10:24 +00:00
|
|
|
* PURPOSE: Configuration Manager - Wrappers for Hive Operations
|
|
|
|
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
|
|
|
|
#include "ntoskrnl.h"
|
|
|
|
#define NDEBUG
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
|
|
|
|
VOID
|
|
|
|
NTAPI
|
|
|
|
CmpReportNotify(IN PCM_KEY_CONTROL_BLOCK Kcb,
|
|
|
|
IN PHHIVE Hive,
|
|
|
|
IN HCELL_INDEX Cell,
|
|
|
|
IN ULONG Filter)
|
|
|
|
{
|
|
|
|
/* FIXME: TODO */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
VOID
|
|
|
|
NTAPI
|
|
|
|
CmpFlushNotify(IN PCM_KEY_BODY KeyBody,
|
|
|
|
IN BOOLEAN LockHeld)
|
|
|
|
{
|
|
|
|
/* FIXME: TODO */
|
|
|
|
return;
|
|
|
|
}
|
2021-06-11 12:29:21 +00:00
|
|
|
|