Source code of Windows XP (NT5)
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.

72 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. adtvars.c
  5. Abstract:
  6. Auditing - Private Variables
  7. Author:
  8. Scott Birrell (ScottBi) November 14, 1991
  9. Environment:
  10. Kernel Mode only
  11. Revision History:
  12. --*/
  13. #include "pch.h"
  14. #pragma hdrstop
  15. #ifdef ALLOC_DATA_PRAGMA
  16. #pragma data_seg("PAGEDATA")
  17. #endif
  18. //
  19. // Auditing State. This contains the Auditing Mode and the array of
  20. // Event Auditing Options
  21. //
  22. //POLICY_AUDIT_EVENTS_INFO SepAdtState;
  23. //
  24. // Audit Log Information
  25. //
  26. POLICY_AUDIT_LOG_INFO SepAdtLogInformation = {0};
  27. //
  28. // High and low water marks to control the length of the audit queue
  29. // These are initialized to their default values in case we can't get
  30. // them out of the registry.
  31. //
  32. ULONG SepAdtMaxListLength = 0x3000;
  33. ULONG SepAdtMinListLength = 0x2000;
  34. ULONG SepAdtCurrentListLength = 0;
  35. //
  36. // Number of events discarded
  37. //
  38. ULONG SepAdtCountEventsDiscarded = 0;
  39. BOOLEAN SepAdtDiscardingAudits = FALSE;
  40. //
  41. // see note in adtp.h regarding SEP_AUDIT_OPTIONS
  42. //
  43. SEP_AUDIT_OPTIONS SepAuditOptions = { 0 };
  44. PKEVENT SepAdtLsaDeadEvent = NULL;