Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

86 lines
1.4 KiB

/*++
Copyright (c) 1991 Microsoft Corporation
Module Name:
adtvars.c
Abstract:
Auditing - Private Variables
Author:
Scott Birrell (ScottBi) November 14, 1991
Environment:
Kernel Mode only
Revision History:
--*/
#include "pch.h"
#pragma hdrstop
#ifdef ALLOC_DATA_PRAGMA
#pragma data_seg("PAGEDATA")
#endif
//
// Auditing State. This contains the Auditing Mode and the array of
// Event Auditing Options
//
//POLICY_AUDIT_EVENTS_INFO SepAdtState;
//
// Audit Log Information
//
POLICY_AUDIT_LOG_INFO SepAdtLogInformation = {0};
//
// High and low water marks to control the length of the audit queue
// These are initialized to their default values in case we can't get
// them out of the registry.
//
ULONG SepAdtMaxListLength = 0x3000;
ULONG SepAdtMinListLength = 0x2000;
ULONG SepAdtCurrentListLength = 0;
//
// Number of events discarded
//
ULONG SepAdtCountEventsDiscarded = 0;
//
// Flag used to indicate that we are currently discarding audit events
//
BOOLEAN SepAdtDiscardingAudits = FALSE;
//
// see note in adtp.h regarding SEP_AUDIT_OPTIONS
//
SEP_AUDIT_OPTIONS SepAuditOptions = { 0 };
//
// Used to indicate that LSA process has died
// (see adtlog.c and rmmain.c)
//
PKEVENT SepAdtLsaDeadEvent = NULL;
#ifdef ALLOC_DATA_PRAGMA
#pragma data_seg()
#endif