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.

34 lines
783 B

  1. #ifndef _TRACES_H_
  2. #define _TRACES_H_
  3. // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  4. //
  5. // TRACES.H
  6. //
  7. // .INI file tagged traces
  8. //
  9. // Copyright 1986-1997 Microsoft Corporation, All Rights Reserved
  10. //
  11. DEFINE_TRACE(Put);
  12. DEFINE_TRACE(HttpExtDbgHeaders);
  13. DEFINE_TRACE(MoveCopyDelete);
  14. DEFINE_TRACE(Url);
  15. DEFINE_TRACE(FsLock);
  16. #define PutTrace DO_TRACE(Put)
  17. #define HttpExtDbgHeadersTrace DO_TRACE(HttpExtDbgHeaders)
  18. #define MCDTrace DO_TRACE(MoveCopyDelete)
  19. #define UrlTrace DO_TRACE(Url)
  20. #define FsLockTrace DO_TRACE(FsLock)
  21. inline void InitTraces()
  22. {
  23. INIT_TRACE(Put);
  24. INIT_TRACE(HttpExtDbgHeaders);
  25. INIT_TRACE(MoveCopyDelete);
  26. INIT_TRACE(Url);
  27. INIT_TRACE(FsLock);
  28. }
  29. #endif // !defined(_TRACES_H_)