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.

27 lines
532 B

  1. #ifndef __NmCtlDbg_h__
  2. #define __NmCtlDbg_h__
  3. #ifdef _DEBUG
  4. #ifdef ATLTRACE
  5. #undef ATLTRACE
  6. #endif
  7. void DbgZPrintAtlTrace(LPCTSTR pszFormat,...);
  8. bool MyInitDebugModule(void);
  9. void MyExitDebugModule(void);
  10. #define ZONE_ATLTRACE 3
  11. #define ZONE_ATLTRACE_FLAG 0x08
  12. #define ATLTRACE DbgZPrintAtlTrace
  13. #else
  14. inline bool MyInitDebugModule(void) { return true; }
  15. inline void MyExitDebugModule(void) { ; }
  16. #endif // _DEBUG
  17. #endif // __NmCtlDbg_h__