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.

42 lines
1.1 KiB

  1. //+-----------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (c) Microsoft Corporation 2000
  6. //
  7. // File: A D T U T I L . C
  8. //
  9. // Contents: Functions to test generic audit support in LSA
  10. //
  11. //
  12. // History:
  13. // 07-January-2000 kumarp created
  14. //
  15. //------------------------------------------------------------------------
  16. #pragma once
  17. EXTERN_C
  18. NTSTATUS
  19. TestEventGenMulti(
  20. IN USHORT NumThreads,
  21. IN ULONG NumIter
  22. );
  23. EXTERN_C
  24. NTSTATUS
  25. kElfReportEventW (
  26. IN HANDLE LogHandle,
  27. IN USHORT EventType,
  28. IN USHORT EventCategory OPTIONAL,
  29. IN ULONG EventID,
  30. IN PSID UserSid,
  31. IN USHORT NumStrings,
  32. IN ULONG DataSize,
  33. IN PUNICODE_STRING *Strings,
  34. IN PVOID Data,
  35. IN USHORT Flags,
  36. IN OUT PULONG RecordNumber OPTIONAL,
  37. IN OUT PULONG TimeWritten OPTIONAL
  38. );