mirror of https://github.com/tongzx/nt5src
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.
28 lines
505 B
28 lines
505 B
#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__
|