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.

53 lines
2.5 KiB

  1. /****************************************************************************/
  2. /* WTRCCTL.H */
  3. /* */
  4. /* Trace include function control switch file - Windows specific */
  5. /* */
  6. /* Copyright(c) Microsoft, Data Connection 1997 */
  7. /* */
  8. /****************************************************************************/
  9. /* Changes: */
  10. /* */
  11. /* $Log: Y:/logs/h/dcl/wtrcctl.h_v $ */
  12. //
  13. // Rev 1.1 19 Jun 1997 14:46:36 ENH
  14. // Win16Port: Make compatible with 16 bit build
  15. /* */
  16. /****************************************************************************/
  17. #ifndef _H_WTRCCTL
  18. #define _H_WTRCCTL
  19. /****************************************************************************/
  20. /* */
  21. /* CONSTANTS */
  22. /* */
  23. /****************************************************************************/
  24. /****************************************************************************/
  25. /* Functions to be included in both user and kernel space */
  26. /****************************************************************************/
  27. #define INC_TRC_GetBuffer
  28. #define INC_TRC_TraceBuffer
  29. #define INC_TRC_GetConfig
  30. #define INC_TRC_SetConfig
  31. #define INC_TRC_TraceData
  32. #define INC_TRC_GetTraceLevel
  33. #define INC_TRC_ProfileTraceEnabled
  34. #define INC_TRCCheckState
  35. #define INC_TRCDumpLine
  36. #define INC_TRCShouldTraceThis
  37. #define INC_TRCSplitPrefixes
  38. /****************************************************************************/
  39. /* Determine our target OS and include the appropriate header file. */
  40. /* Currently we support: */
  41. /****************************************************************************/
  42. #ifdef OS_WIN16
  43. #include <dtrcctl.h>
  44. #else
  45. #include <ntrcctl.h>
  46. #endif
  47. #endif