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.

81 lines
2.3 KiB

  1. /*++
  2. Copyright (c) 1995-1997 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. Revision History:
  12. MuraliK 21-March-1995 Made local copy from template for FTP server
  13. This replaces old "debug.hxx" of FTPsvc.
  14. MuraliK 1-Npv-1996 Updated dbgutil.h
  15. --*/
  16. # ifndef _DBGUTIL_H_
  17. # define _DBGUTIL_H_
  18. /************************************************************
  19. * Include Headers
  20. ************************************************************/
  21. // begin_user_modifiable
  22. //
  23. // Modify the following flags if necessary
  24. //
  25. # define DEFAULT_OUTPUT_FLAGS ( DbgOutputStderr | DbgOutputLogFile | \
  26. DbgOutputKdb | DbgOutputTruncate)
  27. // end_user_modifiable
  28. # include <pudebug.h>
  29. //
  30. // Define the debugging constants
  31. //
  32. # define DEBUG_VIRTUAL_IO 0x00001000
  33. # define DEBUG_CLIENT 0x00002000
  34. # define DEBUG_ASYNC_IO 0x00004000
  35. # define DEBUG_DIR_LIST 0x00008000
  36. # define DEBUG_SOCKETS 0x00010000
  37. # define DEBUG_SEND 0x00020000
  38. # define DEBUG_RECV 0x00040000
  39. # define DEBUG_CONFIG 0x00080000
  40. # define DEBUG_INSTANCE 0x00100000
  41. # define DEBUG_SERVICE_CTRL 0x01000000
  42. # define DEBUG_SECURITY 0x02000000
  43. # define DEBUG_USER_DATABASE 0x04000000
  44. # define DEBUG_RPC 0x08000000
  45. # define DEBUG_CONNECTION 0x10000000
  46. # define DEBUG_PARSING 0x20000000
  47. # define DEBUG_COMMANDS 0x40000000
  48. # define DEBUG_CRITICAL_PATH 0x80000000
  49. # define DEBUG_PASV 0x00200000
  50. # define IF_SPECIAL_DEBUG( arg) IF_DEBUG( arg)
  51. # endif /* _DBGUTIL_H_ */
  52. /************************ End of File ***********************/