reactos/ntoskrnl/config/cmquota.c
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

27 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;
}