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.

31 lines
824 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1993.
  5. //
  6. // File: propdbg.hxx
  7. //
  8. // Contents: Declarations for tracing property code
  9. //
  10. //--------------------------------------------------------------------------
  11. DECLARE_DEBUG(prop)
  12. #define DEB_PROP_EXIT DEB_USER1 // 00010000
  13. #define DEB_PROP_TRACE_CREATE DEB_USER2 // 00020000
  14. #if DBG
  15. #define PropDbg(x) propInlineDebugOut x
  16. #define DBGBUF(buf) CHAR buf[400]
  17. CHAR *DbgFmtId(REFFMTID rfmtid, CHAR *pszBuf);
  18. CHAR *DbgMode(DWORD grfMode, CHAR *pszBuf);
  19. CHAR *DbgFlags(DWORD grfMode, CHAR *pszBuf);
  20. #else
  21. #define PropDbg(x)
  22. #define DBGBUF(buf)
  23. #define DbgFmtId(rfmtid, pszBuf)
  24. #define DbgMode(grfMode, pszBuf)
  25. #define DbgFlags(grfMode, pszBuf)
  26. #endif