ftconfig.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:13k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /***************************************************************************/
  2. /*                                                                         */
  3. /*  ftconfig.h                                                             */
  4. /*                                                                         */
  5. /*    ANSI-specific configuration file (specification only).               */
  6. /*                                                                         */
  7. /*  Copyright 1996-2001, 2002, 2003, 2004, 2006, 2007 by                   */
  8. /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
  9. /*                                                                         */
  10. /*  This file is part of the FreeType project, and may only be used,       */
  11. /*  modified, and distributed under the terms of the FreeType project      */
  12. /*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
  13. /*  this file you indicate that you have read the license and              */
  14. /*  understand and accept it fully.                                        */
  15. /*                                                                         */
  16. /***************************************************************************/
  17.   /*************************************************************************/
  18.   /*                                                                       */
  19.   /* This header file contains a number of macro definitions that are used */
  20.   /* by the rest of the engine.  Most of the macros here are automatically */
  21.   /* determined at compile time, and you should not need to change it to   */
  22.   /* port FreeType, except to compile the library with a non-ANSI          */
  23.   /* compiler.                                                             */
  24.   /*                                                                       */
  25.   /* Note however that if some specific modifications are needed, we       */
  26.   /* advise you to place a modified copy in your build directory.          */
  27.   /*                                                                       */
  28.   /* The build directory is usually `freetype/builds/<system>', and        */
  29.   /* contains system-specific files that are always included first when    */
  30.   /* building the library.                                                 */
  31.   /*                                                                       */
  32.   /* This ANSI version should stay in `include/freetype/config'.           */
  33.   /*                                                                       */
  34.   /*************************************************************************/
  35. #ifndef __FTCONFIG_H__
  36. #define __FTCONFIG_H__
  37. #include <ft2build.h>
  38. #include FT_CONFIG_OPTIONS_H
  39. #include FT_CONFIG_STANDARD_LIBRARY_H
  40. FT_BEGIN_HEADER
  41.   /*************************************************************************/
  42.   /*                                                                       */
  43.   /*               PLATFORM-SPECIFIC CONFIGURATION MACROS                  */
  44.   /*                                                                       */
  45.   /* These macros can be toggled to suit a specific system.  The current   */
  46.   /* ones are defaults used to compile FreeType in an ANSI C environment   */
  47.   /* (16bit compilers are also supported).  Copy this file to your own     */
  48.   /* `freetype/builds/<system>' directory, and edit it to port the engine. */
  49.   /*                                                                       */
  50.   /*************************************************************************/
  51.   /* There are systems (like the Texas Instruments 'C54x) where a `char' */
  52.   /* has 16 bits.  ANSI C says that sizeof(char) is always 1.  Since an  */
  53.   /* `int' has 16 bits also for this system, sizeof(int) gives 1 which   */
  54.   /* is probably unexpected.                                             */
  55.   /*                                                                     */
  56.   /* `CHAR_BIT' (defined in limits.h) gives the number of bits in a      */
  57.   /* `char' type.                                                        */
  58. #ifndef FT_CHAR_BIT
  59. #define FT_CHAR_BIT  CHAR_BIT
  60. #endif
  61.   /* The size of an `int' type.  */
  62. #if                                 FT_UINT_MAX == 0xFFFFUL
  63. #define FT_SIZEOF_INT  (16 / FT_CHAR_BIT)
  64. #elif                               FT_UINT_MAX == 0xFFFFFFFFUL
  65. #define FT_SIZEOF_INT  (32 / FT_CHAR_BIT)
  66. #elif FT_UINT_MAX > 0xFFFFFFFFUL && FT_UINT_MAX == 0xFFFFFFFFFFFFFFFFUL
  67. #define FT_SIZEOF_INT  (64 / FT_CHAR_BIT)
  68. #else
  69. #error "Unsupported size of `int' type!"
  70. #endif
  71.   /* The size of a `long' type.  A five-byte `long' (as used e.g. on the */
  72.   /* DM642) is recognized but avoided.                                   */
  73. #if                                  FT_ULONG_MAX == 0xFFFFFFFFUL
  74. #define FT_SIZEOF_LONG  (32 / FT_CHAR_BIT)
  75. #elif FT_ULONG_MAX > 0xFFFFFFFFUL && FT_ULONG_MAX == 0xFFFFFFFFFFUL
  76. #define FT_SIZEOF_LONG  (32 / FT_CHAR_BIT)
  77. #elif FT_ULONG_MAX > 0xFFFFFFFFUL && FT_ULONG_MAX == 0xFFFFFFFFFFFFFFFFUL
  78. #define FT_SIZEOF_LONG  (64 / FT_CHAR_BIT)
  79. #else
  80. #error "Unsupported size of `long' type!"
  81. #endif
  82.   /* Preferred alignment of data */
  83. #define FT_ALIGNMENT  8
  84.   /* FT_UNUSED is a macro used to indicate that a given parameter is not  */
  85.   /* used -- this is only used to get rid of unpleasant compiler warnings */
  86. #ifndef FT_UNUSED
  87. #define FT_UNUSED( arg )  ( (arg) = (arg) )
  88. #endif
  89.   /*************************************************************************/
  90.   /*                                                                       */
  91.   /*                     AUTOMATIC CONFIGURATION MACROS                    */
  92.   /*                                                                       */
  93.   /* These macros are computed from the ones defined above.  Don't touch   */
  94.   /* their definition, unless you know precisely what you are doing.  No   */
  95.   /* porter should need to mess with them.                                 */
  96.   /*                                                                       */
  97.   /*************************************************************************/
  98.   /*************************************************************************/
  99.   /*                                                                       */
  100.   /* Mac support                                                           */
  101.   /*                                                                       */
  102.   /*   This is the only necessary change, so it is defined here instead    */
  103.   /*   providing a new configuration file.                                 */
  104.   /*                                                                       */
  105. #if ( defined( __APPLE__ ) && !defined( DARWIN_NO_CARBON ) ) || 
  106.     ( defined( __MWERKS__ ) && defined( macintosh )        )
  107.   /* no Carbon frameworks for 64bit 10.4.x */
  108. #include "AvailabilityMacros.h"
  109. #if defined( __LP64__ ) && 
  110.     ( MAC_OS_X_VERSION_MIN_REQUIRED <= MAC_OS_X_VERSION_10_4 )
  111. #define DARWIN_NO_CARBON 1
  112. #else
  113. #define FT_MACINTOSH 1
  114. #endif
  115. #endif
  116.   /*************************************************************************/
  117.   /*                                                                       */
  118.   /* IntN types                                                            */
  119.   /*                                                                       */
  120.   /*   Used to guarantee the size of some specific integers.               */
  121.   /*                                                                       */
  122.   typedef signed short    FT_Int16;
  123.   typedef unsigned short  FT_UInt16;
  124. #if FT_SIZEOF_INT == (32 / FT_CHAR_BIT)
  125.   typedef signed int      FT_Int32;
  126.   typedef unsigned int    FT_UInt32;
  127. #elif FT_SIZEOF_LONG == (32 / FT_CHAR_BIT)
  128.   typedef signed long     FT_Int32;
  129.   typedef unsigned long   FT_UInt32;
  130. #else
  131. #error "no 32bit type found -- please check your configuration files"
  132. #endif
  133.   /* look up an integer type that is at least 32 bits */
  134. #if FT_SIZEOF_INT >= (32 / FT_CHAR_BIT)
  135.   typedef int            FT_Fast;
  136.   typedef unsigned int   FT_UFast;
  137. #elif FT_SIZEOF_LONG >= (32 / FT_CHAR_BIT)
  138.   typedef long           FT_Fast;
  139.   typedef unsigned long  FT_UFast;
  140. #endif
  141.   /* determine whether we have a 64-bit int type for platforms without */
  142.   /* Autoconf                                                          */
  143. #if FT_SIZEOF_LONG == (64 / FT_CHAR_BIT)
  144.   /* FT_LONG64 must be defined if a 64-bit type is available */
  145. #define FT_LONG64
  146. #define FT_INT64  long
  147. #elif defined( _MSC_VER ) && _MSC_VER >= 900  /* Visual C++ (and Intel C++) */
  148.   /* this compiler provides the __int64 type */
  149. #define FT_LONG64
  150. #define FT_INT64  __int64
  151. #elif defined( __BORLANDC__ )  /* Borland C++ */
  152.   /* XXXX: We should probably check the value of __BORLANDC__ in order */
  153.   /*       to test the compiler version.                               */
  154.   /* this compiler provides the __int64 type */
  155. #define FT_LONG64
  156. #define FT_INT64  __int64
  157. #elif defined( __WATCOMC__ )   /* Watcom C++ */
  158.   /* Watcom doesn't provide 64-bit data types */
  159. #elif defined( __MWERKS__ )    /* Metrowerks CodeWarrior */
  160. #define FT_LONG64
  161. #define FT_INT64  long long int
  162. #elif defined( __GNUC__ )
  163.   /* GCC provides the `long long' type */
  164. #define FT_LONG64
  165. #define FT_INT64  long long int
  166. #endif /* FT_SIZEOF_LONG == (64 / FT_CHAR_BIT) */
  167. #define FT_BEGIN_STMNT  do {
  168. #define FT_END_STMNT    } while ( 0 )
  169. #define FT_DUMMY_STMNT  FT_BEGIN_STMNT FT_END_STMNT
  170.   /*************************************************************************/
  171.   /*                                                                       */
  172.   /* A 64-bit data type will create compilation problems if you compile    */
  173.   /* in strict ANSI mode.  To avoid them, we disable their use if          */
  174.   /* __STDC__ is defined.  You can however ignore this rule by             */
  175.   /* defining the FT_CONFIG_OPTION_FORCE_INT64 configuration macro.        */
  176.   /*                                                                       */
  177. #if defined( FT_LONG64 ) && !defined( FT_CONFIG_OPTION_FORCE_INT64 )
  178. #ifdef __STDC__
  179.   /* undefine the 64-bit macros in strict ANSI compilation mode */
  180. #undef FT_LONG64
  181. #undef FT_INT64
  182. #endif /* __STDC__ */
  183. #endif /* FT_LONG64 && !FT_CONFIG_OPTION_FORCE_INT64 */
  184. #ifdef FT_MAKE_OPTION_SINGLE_OBJECT
  185. #define FT_LOCAL( x )      static  x
  186. #define FT_LOCAL_DEF( x )  static  x
  187. #else
  188. #ifdef __cplusplus
  189. #define FT_LOCAL( x )      extern "C"  x
  190. #define FT_LOCAL_DEF( x )  extern "C"  x
  191. #else
  192. #define FT_LOCAL( x )      extern  x
  193. #define FT_LOCAL_DEF( x )  x
  194. #endif
  195. #endif /* FT_MAKE_OPTION_SINGLE_OBJECT */
  196. #ifndef FT_BASE
  197. #ifdef __cplusplus
  198. #define FT_BASE( x )  extern "C"  x
  199. #else
  200. #define FT_BASE( x )  extern  x
  201. #endif
  202. #endif /* !FT_BASE */
  203. #ifndef FT_BASE_DEF
  204. #ifdef __cplusplus
  205. #define FT_BASE_DEF( x )  x
  206. #else
  207. #define FT_BASE_DEF( x )  x
  208. #endif
  209. #endif /* !FT_BASE_DEF */
  210. #ifndef FT_EXPORT
  211. #ifdef __cplusplus
  212. #define FT_EXPORT( x )  extern "C"  x
  213. #else
  214. #define FT_EXPORT( x )  extern  x
  215. #endif
  216. #endif /* !FT_EXPORT */
  217. #ifndef FT_EXPORT_DEF
  218. #ifdef __cplusplus
  219. #define FT_EXPORT_DEF( x )  extern "C"  x
  220. #else
  221. #define FT_EXPORT_DEF( x )  extern  x
  222. #endif
  223. #endif /* !FT_EXPORT_DEF */
  224. #ifndef FT_EXPORT_VAR
  225. #ifdef __cplusplus
  226. #define FT_EXPORT_VAR( x )  extern "C"  x
  227. #else
  228. #define FT_EXPORT_VAR( x )  extern  x
  229. #endif
  230. #endif /* !FT_EXPORT_VAR */
  231.   /* The following macros are needed to compile the library with a   */
  232.   /* C++ compiler and with 16bit compilers.                          */
  233.   /*                                                                 */
  234.   /* This is special.  Within C++, you must specify `extern "C"' for */
  235.   /* functions which are used via function pointers, and you also    */
  236.   /* must do that for structures which contain function pointers to  */
  237.   /* assure C linkage -- it's not possible to have (local) anonymous */
  238.   /* functions which are accessed by (global) function pointers.     */
  239.   /*                                                                 */
  240.   /*                                                                 */
  241.   /* FT_CALLBACK_DEF is used to _define_ a callback function.        */
  242.   /*                                                                 */
  243.   /* FT_CALLBACK_TABLE is used to _declare_ a constant variable that */
  244.   /* contains pointers to callback functions.                        */
  245.   /*                                                                 */
  246.   /* FT_CALLBACK_TABLE_DEF is used to _define_ a constant variable   */
  247.   /* that contains pointers to callback functions.                   */
  248.   /*                                                                 */
  249.   /*                                                                 */
  250.   /* Some 16bit compilers have to redefine these macros to insert    */
  251.   /* the infamous `_cdecl' or `__fastcall' declarations.             */
  252.   /*                                                                 */
  253. #ifndef FT_CALLBACK_DEF
  254. #ifdef __cplusplus
  255. #define FT_CALLBACK_DEF( x )  extern "C"  x
  256. #else
  257. #define FT_CALLBACK_DEF( x )  static  x
  258. #endif
  259. #endif /* FT_CALLBACK_DEF */
  260. #ifndef FT_CALLBACK_TABLE
  261. #ifdef __cplusplus
  262. #define FT_CALLBACK_TABLE      extern "C"
  263. #define FT_CALLBACK_TABLE_DEF  extern "C"
  264. #else
  265. #define FT_CALLBACK_TABLE      extern
  266. #define FT_CALLBACK_TABLE_DEF  /* nothing */
  267. #endif
  268. #endif /* FT_CALLBACK_TABLE */
  269. FT_END_HEADER
  270. #endif /* __FTCONFIG_H__ */
  271. /* END */