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.

69 lines
1.4 KiB

  1. /*++
  2. Copyright (c) 1994-1996 Microsoft Corporation
  3. Module Name :
  4. dbgutil.h
  5. Abstract:
  6. This module declares the macros to wrap around DEBUG_PRINTS class.
  7. This is the exported header file, which the client is allowed to
  8. modify for each application the accompanying pgmutils.dll is used.
  9. Author:
  10. Murali R. Krishnan ( MuraliK ) 22-Sept-1994
  11. Project:
  12. TEMPLATE
  13. Revision History:
  14. MuraliK 16-May-1995 Added macro for reading debug flags.
  15. --*/
  16. # ifndef _DBGUTIL_H_
  17. # define _DBGUTIL_H_
  18. // begin_user_modifiable
  19. //
  20. // Modify the following flags if necessary
  21. //
  22. # define DEFAULT_OUTPUT_FLAGS ( DbgOutputStderr | DbgOutputLogFile | \
  23. DbgOutputKdb | DbgOutputTruncate)
  24. // end_user_modifiable
  25. // begin_user_unmodifiable
  26. /************************************************************
  27. * Include Headers
  28. ************************************************************/
  29. # include <pudebug.h>
  30. //
  31. // Define the debugging constants
  32. //
  33. #define DEBUG_SIO 0x10000000
  34. #define DEBUG_TIMEOUT 0x20000000
  35. #define DEBUG_ENDPOINT 0x40000000
  36. #define DEBUG_SPUD 0x80000000
  37. #define DEBUG_ALLOC_CACHE 0x01000000
  38. #define DEBUG_NOTIFICATION 0x02000000
  39. // Use the default constants from pudebug.h
  40. # endif /* _DBGUTIL_H_ */
  41. /************************ End of File ***********************/