co-bc5.h

来自「PC-Lint是一种静态代码检测工具」· C头文件 代码 · 共 23 行

H
23
字号
// co-bc5.h contains the necessary defines for the borland 5.0 compiler.
// The reason these are defined here is because they can be conditionally
// set depending on whether we are processing C or C++ or on whether
// __WIN32__ has been set

#ifdef  __cplusplus 
  #define __TCPLUSPLUS__ 0x0340
  #define __TEMPLATES__ 1
  #define __CHAR_UNSIGNED 1
  #define __BCPLUSPLUS__ 0x0340
  #define _WCHAR_T          // wchar_t is intrinsically defined
  #define _WCHAR_T_DEFINED  // wchar_t is intrinsically defined
  template <class T1, class T2> class pair;
  template <class T> class allocator;
#endif

#if defined(__WIN32__)
  #define __TLS__ 1         //Always true for the 32 bit compilier
  #define _WIN32            // Required for processing 32-bit
#endif


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?