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.

59 lines
1.3 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. THIS IS A TEMPLATE. Please clone it for your DLL!
  16. --*/
  17. # ifndef _DBGUTIL_H_
  18. # define _DBGUTIL_H_
  19. // begin_user_modifiable
  20. //
  21. // Modify the following flags if necessary
  22. //
  23. # define DEFAULT_OUTPUT_FLAGS ( DbgOutputStderr | DbgOutputLogFile | \
  24. DbgOutputKdb | DbgOutputTruncate)
  25. // end_user_modifiable
  26. /************************************************************
  27. * Include Headers
  28. ************************************************************/
  29. # include <pudebug.h>
  30. //
  31. // Define the debugging constants
  32. //
  33. #define DEBUG_DLL_SERVICE_INFO 0x00200000L
  34. # endif /* _DBGUTIL_H_ */
  35. /************************ End of File ***********************/