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.

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 ( DbgOutputKdb )
  23. // end_user_modifiable
  24. // begin_user_unmodifiable
  25. /************************************************************
  26. * Include Headers
  27. ************************************************************/
  28. # include <pudebug.h>
  29. //
  30. // Define the debugging constants
  31. //
  32. // Use the default constants from pudebug.h
  33. # define DEBUG_WAMREG_MTS 0x00010000
  34. # define DEBUG_WAMREG_REGISTRY 0x00020000
  35. # define DEBUG_WAMREG_METABASE 0x00040000
  36. # endif /* _DBGUTIL_H_ */
  37. /************************ End of File ***********************/