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.

64 lines
1.3 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_ALLOC_CACHE 0x01000000
  34. # define DEBUG_SCHED 0x02000000
  35. # define DEBUG_RESOURCE 0x04000000
  36. // Use the default constants from pudebug.h
  37. # endif /* _DBGUTIL_H_ */
  38. /************************ End of File ***********************/