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.

35 lines
926 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1996.
  5. //
  6. // File: srgtdeb.hxx
  7. //
  8. // Contents: debugging utilities for the surrogate executable
  9. //
  10. // History: 03-Jun-96 t-AdamE Created
  11. //
  12. //--------------------------------------------------------------------------
  13. #if !defined(__SRGTDEB_HXX__)
  14. #define __SRGTDEB_HXX__
  15. #include <debnot.h>
  16. #define DEB_SRGT_ALL 0xFFFFFFFF
  17. #define DEB_SRGT_START DEB_USER15 | DEB_ERROR | DEB_WARN
  18. #define DEB_SRGT_METHODCALL 0x00000001 | DEB_SRGT_START
  19. #define DEB_SRGT_STATUS 0x00000002 | DEB_SRGT_START
  20. #define DEB_SRGT_ENTRY 0x00000004 | DEB_SRGT_START
  21. DECLARE_DEBUG(Surrogate)
  22. #if DBG
  23. #define SrgtDebugOut(x,y,z) SurrogateInlineDebugOut(x,y,z)
  24. #else // DBG
  25. #define SrgtDebugOut(x,y,z)
  26. #undef SurrogateInlineDebugOut
  27. #endif // DBG
  28. #endif // !defined(__SRGTDEB_HXX__)