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.

65 lines
1.4 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/obj is used.
  9. Author:
  10. Murali R. Krishnan ( MuraliK ) 23-Febt-1995
  11. Project:
  12. SNMP Extension agent for Gopher Service on Windows NT.
  13. Revision History:
  14. Note:
  15. Most of the macros defined here are used only if DBG is set. Otherwise
  16. they just default to some null values, which compiler can take
  17. care of.
  18. --*/
  19. # ifndef _DBGUTIL_H_
  20. # define _DBGUTIL_H_
  21. // begin_user_modifiable
  22. //
  23. // Modify the following flags if necessary
  24. //
  25. # define DEFAULT_OUTPUT_FLAGS ( DbgOutputStderr | DbgOutputKdb)
  26. // end_user_modifiable
  27. /************************************************************
  28. * Include Headers
  29. ************************************************************/
  30. # include <pudebug.h>
  31. //
  32. // Define the debugging constants
  33. //
  34. # define DEBUG_SNMP_INIT 0x00001000
  35. # define DEBUG_SNMP_TRAP 0x00002000
  36. # define DEBUG_SNMP_QUERY 0x00004000
  37. # define DEBUG_SNMP_RESOLVE 0x00008000
  38. # endif /* _DBGUTIL_H_ */
  39. /************************ End of File ***********************/