rxdebug.h
上传用户:rundaa
上传日期:2009-05-24
资源大小:44k
文件大小:1k
源码类别:

CAD

开发平台:

Visual C++

  1. #if !defined(RXTRACE_H__35A69BA3_C12C_11D2_B89B_080009DCA551__INCLUDED_)
  2. #define RXTRACE_H__35A69BA3_C12C_11D2_B89B_080009DCA551__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. #include <tchar.h>
  7. #include <stdio.h>
  8. #include <stdarg.h>
  9. #include <assert.h>
  10. void _cdecl RxTrace(const TCHAR* lpszFormat, ...);
  11. #ifdef _DEBUG
  12. #define RXTRACE         ::RxTrace
  13. #define RXASSERT(f)     assert(f)
  14. #else
  15. #define RXTRACE         1?(void)0: ::RxTrace
  16. #define RXASSERT(f)     ((void)0)
  17. #endif
  18. #endif // !defined(RXTRACE_H__35A69BA3_C12C_11D2_B89B_080009DCA551__INCLUDED_)