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.

32 lines
640 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1999
  6. //
  7. // File: frstrace.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #ifndef _FRSTRACE_H
  11. #define _FRSTRACE_H
  12. #include "wmistr.h"
  13. #include "evntrace.h"
  14. #define FRS_TRACE_VERSION 1
  15. typedef enum _tagFrsTracedEvent {
  16. EnumFrsTrans
  17. } EnumFrsTracedEvent;
  18. // Do the actual trace logs
  19. //
  20. VOID
  21. FrsWmiTraceEvent(
  22. IN DWORD WmiEventType,
  23. IN DWORD TraceGuid,
  24. IN DWORD rtnStatus
  25. );
  26. #endif /* _FRSTRACE_H */