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.

41 lines
780 B

  1. /*++
  2. Copyright(c) 1998,99 Microsoft Corporation
  3. Module Name:
  4. trace.h
  5. Abstract:
  6. Windows Load Balancing Service (WLBS)
  7. Driver - Support for Windows Event Tracing
  8. Since currently NDIS and WPP event tracing don't mix well, WPP event
  9. tracing is accessed through a separate C file, trace.c, which doesn't
  10. include ndis.h.
  11. To keep the low foot print of Event Tracing, the following specialized
  12. macros should be used for tracing, as well as specialized tracing
  13. routines written for each thing traced.
  14. Author:
  15. josephj
  16. --*/
  17. #ifndef _trace_h_
  18. #define _trace_h_
  19. VOID
  20. Trace_Initialize(
  21. PVOID driver_obj,
  22. PVOID registry_path
  23. );
  24. VOID
  25. Trace_Deinitialize(VOID);
  26. #endif // _trace_h_