WindowsXP-SP1/enduser/netmeeting/ui/nmctl1/nmctldbg.h
2020-09-30 16:53:49 +02:00

28 lines
532 B
C

#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__