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.

61 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 1994 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| DbgOutputKdb)
  23. // end_user_modifiable
  24. /************************************************************
  25. * Include Headers
  26. ************************************************************/
  27. # include <pudebug.h>
  28. //
  29. // Define the debugging constants
  30. //
  31. # define DEBUG_ENTRY DEBUG_API_ENTRY
  32. # define DEBUG_RESPONSE 0x00001000
  33. # define DEBUG_ITERATION 0x00002000
  34. # endif /* _DBGUTIL_H_ */
  35. /************************ End of File ***********************/