mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
6638a5b899
svn path=/branches/reactos-yarotows/; revision=46732
24 lines
No EOL
601 B
C
24 lines
No EOL
601 B
C
/*
|
|
* PROJECT: ReactOS Kernel
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: ntoskrnl/config/cmwraprs.c
|
|
* PURPOSE: Configuration Manager - Wrappers for Hive Operations
|
|
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include "ntoskrnl.h"
|
|
#define NDEBUG
|
|
#include "debug.h"
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
NTSTATUS
|
|
NTAPI
|
|
CmpAddToHiveFileList(IN PCMHIVE Hive)
|
|
{
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
/* EOF */ |