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.
57 lines
2.3 KiB
57 lines
2.3 KiB
/***********************************************************************
|
|
*
|
|
* DBGUTIL.H
|
|
*
|
|
* Debug Utility functions
|
|
*
|
|
* Copyright 1992 - 1996 Microsoft Corporation. All Rights Reserved.
|
|
*
|
|
* Revision History:
|
|
*
|
|
* When Who What
|
|
* -------- ------------------ ---------------------------------------
|
|
* 11.13.95 Bruce Kelley Created
|
|
*
|
|
***********************************************************************/
|
|
|
|
#ifdef DEBUG
|
|
VOID _DebugObjectProps(BOOL fMAPI, LPMAPIPROP lpObject, LPTSTR Label);
|
|
VOID _DebugProperties(LPSPropValue lpProps, DWORD cProps, PUCHAR pszObject);
|
|
void _DebugMapiTable(BOOL fMAPI, LPMAPITABLE lpTable);
|
|
void _DebugADRLIST(LPADRLIST lpAdrList, LPTSTR lpszTitle);
|
|
void _DebugNamedProps(BOOL fMAPI, LPMAPIPROP lpObject, LPTSTR Label);
|
|
VOID DebugBinary(UINT cb, LPBYTE lpb);
|
|
|
|
#define WABDebugObjectProps(lpObject, Label) _DebugObjectProps(FALSE, lpObject, Label)
|
|
#define WABDebugProperties(lpProps, cProps, pszObject) _DebugProperties(lpProps, cProps, pszObject)
|
|
#define WABDebugMapiTable(lpTable) _DebugMapiTable(FALSE, lpTable)
|
|
#define WABDebugADRLIST(lpAdrList, lpszTitle) _DebugADRLIST(lpAdrList, lpszTitle)
|
|
#define WABDebugNamedProps(lpObject, Label) _DebugNamedProps(FALSE, lpObject, Label)
|
|
|
|
#define MAPIDebugObjectProps(lpObject, Label) _DebugObjectProps(TRUE, lpObject, Label)
|
|
#define MAPIDebugProperties(lpProps, cProps, pszObject) _DebugProperties(lpProps, cProps, pszObject)
|
|
#define MAPIDebugMapiTable(lpTable) _DebugMapiTable(TRUE, lpTable)
|
|
#define MAPIDebugADRLIST(lpAdrList, lpszTitle) _DebugADRLIST(lpAdrList, lpszTitle)
|
|
#define MAPIDebugNamedProps(lpObject, Label) _DebugNamedProps(TRUE, lpObject, Label)
|
|
#define DebugBinaryData(cb, lpb) DebugBinary(cb, lpb)
|
|
|
|
// VOID FAR CDECL DebugTrace(LPSTR lpszFmt, ...);
|
|
|
|
#else
|
|
|
|
#define WABDebugObjectProps(lpObject, Label)
|
|
#define WABDebugProperties(lpProps, cProps, pszObject)
|
|
#define WABDebugMapiTable(lpTable)
|
|
#define WABDebugADRLIST(lpAdrList, lpszTitle)
|
|
#define WABDebugNamedProps(lpObject, Label)
|
|
|
|
#define MAPIDebugObjectProps(lpObject, Label)
|
|
#define MAPIDebugProperties(lpProps, cProps, pszObject)
|
|
#define MAPIDebugMapiTable(lpTable)
|
|
#define MAPIDebugADRLIST(lpAdrList, lpszTitle)
|
|
#define MAPIDebugNamedProps(lpObject, Label)
|
|
#define DebugBinaryData(cb, lpb)
|
|
|
|
#endif
|
|
|
|
|