co-bc5.h
上传用户:filter2008
上传日期:2010-03-12
资源大小:2959k
文件大小:1k
源码类别:

编辑器/阅读器

开发平台:

C/C++

  1. // co-bc5.h contains the necessary defines for the borland 5.0 compiler.
  2. // The reason these are defined here is because they can be conditionally
  3. // set depending on whether we are processing C or C++ or on whether
  4. // __WIN32__ has been set
  5. #ifdef  __cplusplus 
  6.   #define __TCPLUSPLUS__ 0x0340
  7.   #define __TEMPLATES__ 1
  8.   #define __CHAR_UNSIGNED 1
  9.   #define __BCPLUSPLUS__ 0x0340
  10.   #define _WCHAR_T          // wchar_t is intrinsically defined
  11.   #define _WCHAR_T_DEFINED  // wchar_t is intrinsically defined
  12.   template <class T1, class T2> class pair;
  13.   template <class T> class allocator;
  14. #endif
  15. #if defined(__WIN32__)
  16.   #define __TLS__ 1         //Always true for the 32 bit compilier
  17.   #define _WIN32            // Required for processing 32-bit
  18. #endif