windows-nt/Source/XPSP1/NT/enduser/netmeeting/ui/nmctl1/nmctldbg.h

28 lines
505 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
#ifndef __NmCtlDbg_h__
#define __NmCtlDbg_h__
#ifdef _DEBUG
#ifdef ATLTRACE
#undef ATLTRACE
#endif
void DbgZPrintAtlTrace(LPCTSTR pszFormat,...);
bool MyInitDebugModule(void);
void MyExitDebugModule(void);
#define ZONE_ATLTRACE 3
#define ZONE_ATLTRACE_FLAG 0x08
#define ATLTRACE DbgZPrintAtlTrace
#else
inline bool MyInitDebugModule(void) { return true; }
inline void MyExitDebugModule(void) { ; }
#endif // _DEBUG
#endif // __NmCtlDbg_h__