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

//+-------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1993.
//
// File: propdbg.hxx
//
// Contents: Declarations for tracing property code
//
//--------------------------------------------------------------------------
DECLARE_DEBUG(prop)
#define DEB_PROP_EXIT DEB_USER1 // 00010000
#define DEB_PROP_TRACE_CREATE DEB_USER2 // 00020000
#if DBG
#define PropDbg(x) propInlineDebugOut x
#define DBGBUF(buf) CHAR buf[400]
CHAR *DbgFmtId(REFFMTID rfmtid, CHAR *pszBuf);
CHAR *DbgMode(DWORD grfMode, CHAR *pszBuf);
CHAR *DbgFlags(DWORD grfMode, CHAR *pszBuf);
#else
#define PropDbg(x)
#define DBGBUF(buf)
#define DbgFmtId(rfmtid, pszBuf)
#define DbgMode(grfMode, pszBuf)
#define DbgFlags(grfMode, pszBuf)
#endif