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.

52 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. adt.h
  5. Abstract:
  6. Auditing - Defines, Fuction Prototypes and Macro Functions.
  7. These are public to the Security Component only.
  8. Author:
  9. Scott Birrell (ScottBi) January 17, 1991
  10. Environment:
  11. Revision History:
  12. --*/
  13. #include <ntlsa.h>
  14. //////////////////////////////////////////////////////////////////////////////
  15. // //
  16. // Auditing Routines visible to rest of Security Component outside Auditing //
  17. // subcomponent. //
  18. // //
  19. //////////////////////////////////////////////////////////////////////////////
  20. BOOLEAN
  21. SepAdtInitializePhase0();
  22. BOOLEAN
  23. SepAdtInitializePhase1();
  24. VOID
  25. SepAdtLogAuditRecord(
  26. IN PSE_ADT_PARAMETER_ARRAY AuditParameters
  27. );
  28. NTSTATUS
  29. SepAdtCopyToLsaSharedMemory(
  30. IN HANDLE LsaProcessHandle,
  31. IN PVOID Buffer,
  32. IN ULONG BufferLength,
  33. OUT PVOID *LsaBufferAddress
  34. );