mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
27 lines
691 B
C
27 lines
691 B
C
/*
|
|
* PROJECT: ReactOS Kernel
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: ntoskrnl/config/cmquota.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;
|
|
}
|