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.

82 lines
2.0 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. MuraliK 1-Nov-1996 Use common macros from pudebug.h
  16. --*/
  17. # ifndef _DBGUTIL_H_
  18. # define _DBGUTIL_H_
  19. /************************************************************
  20. * Include Headers
  21. ************************************************************/
  22. // begin_user_modifiable
  23. //
  24. // Modify the following flags if necessary
  25. //
  26. # define DEFAULT_OUTPUT_FLAGS ( DbgOutputStderr | DbgOutputLogFile | \
  27. DbgOutputKdb | DbgOutputTruncate)
  28. // end_user_modifiable
  29. # include <pudebug.h>
  30. //
  31. // Define the debugging constants
  32. //
  33. #define DEBUG_OPLOCKS 0x00001000L
  34. #define DEBUG_GATEWAY 0x00010000L
  35. #define DEBUG_INSTANCE 0x00020000L
  36. #define DEBUG_ENDPOINT 0x00040000L
  37. #define DEBUG_METABASE 0x00080000L
  38. #define DEBUG_DLL_EVENT_LOG 0x00100000L
  39. #define DEBUG_DLL_SERVICE_INFO 0x00200000L
  40. #define DEBUG_DLL_SECURITY 0x00400000L
  41. #define DEBUG_DLL_CONNECTION 0x00800000L
  42. #define DEBUG_DLL_RPC 0x01000000L
  43. #define DEBUG_ODBC 0x02000000L
  44. #define DEBUG_MIME_MAP 0x04000000L
  45. #define DEBUG_DLL_VIRTUAL_ROOTS 0x08000000L
  46. # define DEBUG_VIRTUAL_ROOTS (DEBUG_DLL_VIRTUAL_ROOTS)
  47. # define DEBUG_DIR_LIST 0x10000000L
  48. # define DEBUG_OPEN_FILE 0x20000000L
  49. # define DEBUG_CACHE 0x40000000L
  50. # define DEBUG_DIRECTORY_CHANGE 0x80000000L
  51. # endif /* _DBGUTIL_H_ */
  52. /************************ End of File ***********************/