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.

49 lines
891 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1993.
  5. //
  6. // File: events.hxx
  7. //
  8. // Contents:
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 3-07-95 RichardW Created
  15. //
  16. //----------------------------------------------------------------------------
  17. #ifndef __EVENTS_HXX__
  18. #define __EVENTS_HXX__
  19. BOOL
  20. InitializeEvents(void);
  21. DWORD
  22. ReportServiceEvent(
  23. IN WORD EventType,
  24. IN DWORD EventId,
  25. IN DWORD SizeOfRawData,
  26. IN PVOID RawData,
  27. IN DWORD NumberOfStrings,
  28. ...
  29. );
  30. void
  31. KdcReportKeyError(
  32. IN PUNICODE_STRING AccountName,
  33. IN OPTIONAL PUNICODE_STRING ServerName,
  34. IN ULONG EventId,
  35. IN OPTIONAL PKERB_CRYPT_LIST RequestEtypes,
  36. IN OPTIONAL PKERB_STORED_CREDENTIAL StoredCredential
  37. );
  38. BOOL
  39. ShutdownEvents(void);
  40. #endif