mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
49d7aed889
svn path=/branches/reactos-yarotows/; revision=46633
26 lines
693 B
C
26 lines
693 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"
|
|
|
|
BOOLEAN CmpGlobalQuota;
|
|
BOOLEAN CmpGlobalQuotaAllowed;
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
VOID
|
|
NTAPI
|
|
CmpSetGlobalQuotaAllowed(VOID)
|
|
{
|
|
/* Set flag ON if quota enabled */
|
|
CmpGlobalQuotaAllowed = CmpGlobalQuota;
|
|
}
|