亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ftconfig.h

?? 附上freetype2.1.10的源代碼,這個和上面傳的是一起的
?? H
字號:
/***************************************************************************//*                                                                         *//*  ftconfig.h                                                             *//*                                                                         *//*    ANSI-specific configuration file (specification only).               *//*                                                                         *//*  Copyright 1996-2001, 2002, 2003, 2004 by                               *//*  David Turner, Robert Wilhelm, and Werner Lemberg.                      *//*                                                                         *//*  This file is part of the FreeType project, and may only be used,       *//*  modified, and distributed under the terms of the FreeType project      *//*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     *//*  this file you indicate that you have read the license and              *//*  understand and accept it fully.                                        *//*                                                                         *//***************************************************************************/  /*************************************************************************/  /*                                                                       */  /* This header file contains a number of macro definitions that are used */  /* by the rest of the engine.  Most of the macros here are automatically */  /* determined at compile time, and you should not need to change it to   */  /* port FreeType, except to compile the library with a non-ANSI          */  /* compiler.                                                             */  /*                                                                       */  /* Note however that if some specific modifications are needed, we       */  /* advise you to place a modified copy in your build directory.          */  /*                                                                       */  /* The build directory is usually `freetype/builds/<system>', and        */  /* contains system-specific files that are always included first when    */  /* building the library.                                                 */  /*                                                                       */  /* This ANSI version should stay in `include/freetype/config'.           */  /*                                                                       */  /*************************************************************************/#ifndef __FTCONFIG_H__#define __FTCONFIG_H__#include <ft2build.h>#include FT_CONFIG_OPTIONS_H#include FT_CONFIG_STANDARD_LIBRARY_HFT_BEGIN_HEADER  /*************************************************************************/  /*                                                                       */  /*               PLATFORM-SPECIFIC CONFIGURATION MACROS                  */  /*                                                                       */  /* These macros can be toggled to suit a specific system.  The current   */  /* ones are defaults used to compile FreeType in an ANSI C environment   */  /* (16bit compilers are also supported).  Copy this file to your own     */  /* `freetype/builds/<system>' directory, and edit it to port the engine. */  /*                                                                       */  /*************************************************************************/  /* There are systems (like the Texas Instruments 'C54x) where a `char' */  /* has 16 bits.  ANSI C says that sizeof(char) is always 1.  Since an  */  /* `int' has 16 bits also for this system, sizeof(int) gives 1 which   */  /* is probably unexpected.                                             */  /*                                                                     */  /* `CHAR_BIT' (defined in limits.h) gives the number of bits in a      */  /* `char' type.                                                        */#ifndef FT_CHAR_BIT#define FT_CHAR_BIT  CHAR_BIT#endif  /* The size of an `int' type.  */#if                                 FT_UINT_MAX == 0xFFFFUL#define FT_SIZEOF_INT  (16 / FT_CHAR_BIT)#elif                               FT_UINT_MAX == 0xFFFFFFFFUL#define FT_SIZEOF_INT  (32 / FT_CHAR_BIT)#elif FT_UINT_MAX > 0xFFFFFFFFUL && FT_UINT_MAX == 0xFFFFFFFFFFFFFFFFUL#define FT_SIZEOF_INT  (64 / FT_CHAR_BIT)#else#error "Unsupported size of `int' type!"#endif  /* The size of a `long' type.  A five-byte `long' (as used e.g. on the */  /* DM642) is recognized but avoided.                                   */#if                                  FT_ULONG_MAX == 0xFFFFFFFFUL#define FT_SIZEOF_LONG  (32 / FT_CHAR_BIT)#elif FT_ULONG_MAX > 0xFFFFFFFFUL && FT_ULONG_MAX == 0xFFFFFFFFFFUL#define FT_SIZEOF_LONG  (32 / FT_CHAR_BIT)#elif FT_ULONG_MAX > 0xFFFFFFFFUL && FT_ULONG_MAX == 0xFFFFFFFFFFFFFFFFUL#define FT_SIZEOF_LONG  (64 / FT_CHAR_BIT)#else#error "Unsupported size of `long' type!"#endif  /* Preferred alignment of data */#define FT_ALIGNMENT  8  /* FT_UNUSED is a macro used to indicate that a given parameter is not  */  /* used -- this is only used to get rid of unpleasant compiler warnings */#ifndef FT_UNUSED#define FT_UNUSED( arg )  ( (arg) = (arg) )#endif  /*************************************************************************/  /*                                                                       */  /*                     AUTOMATIC CONFIGURATION MACROS                    */  /*                                                                       */  /* These macros are computed from the ones defined above.  Don't touch   */  /* their definition, unless you know precisely what you are doing.  No   */  /* porter should need to mess with them.                                 */  /*                                                                       */  /*************************************************************************/  /*************************************************************************/  /*                                                                       */  /* Mac support                                                           */  /*                                                                       */  /*   This is the only necessary change, so it is defined here instead    */  /*   providing a new configuration file.                                 */  /*                                                                       */#if ( defined( __APPLE__ ) && !defined( DARWIN_NO_CARBON ) ) || \    ( defined( __MWERKS__ ) && defined( macintosh )        )#define FT_MACINTOSH 1#endif  /*************************************************************************/  /*                                                                       */  /* IntN types                                                            */  /*                                                                       */  /*   Used to guarantee the size of some specific integers.               */  /*                                                                       */  typedef signed short    FT_Int16;  typedef unsigned short  FT_UInt16;#if FT_SIZEOF_INT == (32 / FT_CHAR_BIT)  typedef signed int      FT_Int32;  typedef unsigned int    FT_UInt32;#elif FT_SIZEOF_LONG == (32 / FT_CHAR_BIT)  typedef signed long     FT_Int32;  typedef unsigned long   FT_UInt32;#else#error "no 32bit type found -- please check your configuration files"#endif  /* look up an integer type that is at least 32 bits */#if FT_SIZEOF_INT >= (32 / FT_CHAR_BIT)  typedef int            FT_Fast;  typedef unsigned int   FT_UFast;#elif FT_SIZEOF_LONG >= (32 / FT_CHAR_BIT)  typedef long           FT_Fast;  typedef unsigned long  FT_UFast;#endif  /* determine whether we have a 64-bit int type for platforms without */  /* Autoconf                                                          */#if FT_SIZEOF_LONG == (64 / FT_CHAR_BIT)  /* FT_LONG64 must be defined if a 64-bit type is available */#define FT_LONG64#define FT_INT64  long#elif defined( _MSC_VER ) && _MSC_VER >= 900  /* Visual C++ (and Intel C++) */  /* this compiler provides the __int64 type */#define FT_LONG64#define FT_INT64  __int64#elif defined( __BORLANDC__ )  /* Borland C++ */  /* XXXX: We should probably check the value of __BORLANDC__ in order */  /*       to test the compiler version.                               */  /* this compiler provides the __int64 type */#define FT_LONG64#define FT_INT64  __int64#elif defined( __WATCOMC__ )   /* Watcom C++ */  /* Watcom doesn't provide 64-bit data types */#elif defined( __MWERKS__ )    /* Metrowerks CodeWarrior */#define FT_LONG64#define FT_INT64  long long int#elif defined( __GNUC__ )  /* GCC provides the "long long" type */#define FT_LONG64#define FT_INT64  long long int#endif /* FT_SIZEOF_LONG == (64 / FT_CHAR_BIT) */#define FT_BEGIN_STMNT  do {#define FT_END_STMNT    } while ( 0 )#define FT_DUMMY_STMNT  FT_BEGIN_STMNT FT_END_STMNT  /*************************************************************************/  /*                                                                       */  /* A 64-bit data type will create compilation problems if you compile    */  /* in strict ANSI mode.  To avoid them, we disable their use if          */  /* __STDC__ is defined.  You can however ignore this rule by             */  /* defining the FT_CONFIG_OPTION_FORCE_INT64 configuration macro.        */  /*                                                                       */#if defined( FT_LONG64 ) && !defined( FT_CONFIG_OPTION_FORCE_INT64 )#ifdef __STDC__  /* undefine the 64-bit macros in strict ANSI compilation mode */#undef FT_LONG64#undef FT_INT64#endif /* __STDC__ */#endif /* FT_LONG64 && !FT_CONFIG_OPTION_FORCE_INT64 */#ifdef FT_MAKE_OPTION_SINGLE_OBJECT#define FT_LOCAL( x )      static  x#define FT_LOCAL_DEF( x )  static  x#else#ifdef __cplusplus#define FT_LOCAL( x )      extern "C"  x#define FT_LOCAL_DEF( x )  extern "C"  x#else#define FT_LOCAL( x )      extern  x#define FT_LOCAL_DEF( x )  x#endif#endif /* FT_MAKE_OPTION_SINGLE_OBJECT */#ifndef FT_BASE#ifdef __cplusplus#define FT_BASE( x )  extern "C"  x#else#define FT_BASE( x )  extern  x#endif#endif /* !FT_BASE */#ifndef FT_BASE_DEF#ifdef __cplusplus#define FT_BASE_DEF( x )  extern "C"  x#else#define FT_BASE_DEF( x )  extern  x#endif#endif /* !FT_BASE_DEF */#ifndef FT_EXPORT#ifdef __cplusplus#define FT_EXPORT( x )  extern "C"  x#else#define FT_EXPORT( x )  extern  x#endif#endif /* !FT_EXPORT */#ifndef FT_EXPORT_DEF#ifdef __cplusplus#define FT_EXPORT_DEF( x )  extern "C"  x#else#define FT_EXPORT_DEF( x )  extern  x#endif#endif /* !FT_EXPORT_DEF */#ifndef FT_EXPORT_VAR#ifdef __cplusplus#define FT_EXPORT_VAR( x )  extern "C"  x#else#define FT_EXPORT_VAR( x )  extern  x#endif#endif /* !FT_EXPORT_VAR */  /* The following macros are needed to compile the library with a   */  /* C++ compiler and with 16bit compilers.                          */  /*                                                                 */  /* This is special.  Within C++, you must specify `extern "C"' for */  /* functions which are used via function pointers, and you also    */  /* must do that for structures which contain function pointers to  */  /* assure C linkage -- it's not possible to have (local) anonymous */  /* functions which are accessed by (global) function pointers.     */  /*                                                                 */  /*                                                                 */  /* FT_CALLBACK_DEF is used to _define_ a callback function.        */  /*                                                                 */  /* FT_CALLBACK_TABLE is used to _declare_ a constant variable that */  /* contains pointers to callback functions.                        */  /*                                                                 */  /* FT_CALLBACK_TABLE_DEF is used to _define_ a constant variable   */  /* that contains pointers to callback functions.                   */  /*                                                                 */  /*                                                                 */  /* Some 16bit compilers have to redefine these macros to insert    */  /* the infamous `_cdecl' or `__fastcall' declarations.             */  /*                                                                 */#ifndef FT_CALLBACK_DEF#ifdef __cplusplus#define FT_CALLBACK_DEF( x )  extern "C"  x#else#define FT_CALLBACK_DEF( x )  static  x#endif#endif /* FT_CALLBACK_DEF */#ifndef FT_CALLBACK_TABLE#ifdef __cplusplus#define FT_CALLBACK_TABLE      extern "C"#define FT_CALLBACK_TABLE_DEF  extern "C"#else#define FT_CALLBACK_TABLE      extern#define FT_CALLBACK_TABLE_DEF  /* nothing */#endif#endif /* FT_CALLBACK_TABLE */FT_END_HEADER#endif /* __FTCONFIG_H__ *//* END */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
最新不卡av在线| 精品系列免费在线观看| 欧洲亚洲国产日韩| 国产精品系列在线播放| 免费在线看成人av| 视频一区二区不卡| 亚洲h精品动漫在线观看| 亚洲人成人一区二区在线观看 | 亚洲福中文字幕伊人影院| 亚洲欧美激情小说另类| 久久精品国产精品亚洲综合| 黑人精品欧美一区二区蜜桃| 国产一区二区在线观看视频| 国产精品88av| 欧美一级在线视频| 欧美一级欧美三级| 亚洲自拍偷拍九九九| 午夜av一区二区三区| 奇米影视一区二区三区小说| 日本精品一区二区三区高清 | 欧美一区二区三区日韩| 亚洲美女免费在线| 国产福利电影一区二区三区| 91丨porny丨在线| 欧美日韩午夜影院| 欧美一区二区三区色| 亚洲电影在线免费观看| 91老司机福利 在线| 亚洲国产精品成人综合色在线婷婷| 欧美激情资源网| 国产一区二区三区四区五区入口| 精品日韩一区二区三区 | 555夜色666亚洲国产免| 日韩网站在线看片你懂的| 久久久久久亚洲综合影院红桃| 国产欧美日本一区视频| 亚洲国产cao| 欧美美女一区二区三区| 国产女同性恋一区二区| 国产美女精品人人做人人爽| xf在线a精品一区二区视频网站| 亚洲欧洲日本在线| 美洲天堂一区二卡三卡四卡视频| 不卡的av在线| 日韩欧美国产一二三区| 一区二区日韩电影| 国产毛片精品视频| 国产午夜亚洲精品不卡| 青青草精品视频| 日韩精品一区在线| 国产麻豆成人精品| 国产精品青草久久| 国内不卡的二区三区中文字幕| 精品少妇一区二区三区视频免付费| 久久国产日韩欧美精品| 欧美国产亚洲另类动漫| 91亚洲精品久久久蜜桃网站| 午夜欧美在线一二页| 精品欧美久久久| 成人免费毛片高清视频| 久久女同性恋中文字幕| 不卡区在线中文字幕| 亚洲最大成人综合| 日韩一级片在线观看| 国产一区中文字幕| 亚洲免费观看高清| 欧美日韩国产123区| 一区二区三区精品在线观看| 欧美肥胖老妇做爰| 国产成人日日夜夜| 亚洲一二三区视频在线观看| 精品国产精品一区二区夜夜嗨| 日韩有码一区二区三区| 26uuu色噜噜精品一区| 91在线国产福利| 国产精品久久久久婷婷| av中文字幕不卡| 国产精品久久久久久久久图文区| 欧美亚洲综合久久| 亚洲激情网站免费观看| 色婷婷av久久久久久久| 一卡二卡欧美日韩| 国产亚洲精品福利| 7777精品伊人久久久大香线蕉超级流畅| 国产精品一区二区在线看| 亚洲一区二区三区四区在线| 久久精品日韩一区二区三区| 欧美日韩日日夜夜| 91社区在线播放| 国产精一区二区三区| 日本欧美在线观看| 久久综合一区二区| 欧美日韩亚洲综合| 91香蕉视频mp4| 国产精品一级在线| 精品亚洲成av人在线观看| 五月天国产精品| 亚洲三级小视频| 亚洲国产精品成人久久综合一区 | 久久先锋资源网| 欧美人xxxx| 91蝌蚪porny成人天涯| 国产精品一区专区| 麻豆成人91精品二区三区| 亚洲国产aⅴ天堂久久| 亚洲日本在线a| 亚洲欧美综合另类在线卡通| 国产精品欧美极品| 国产精品第13页| 国产精品污网站| 国产精品日韩精品欧美在线| 欧美精品一区二区三区蜜桃| 日韩色在线观看| 欧美一级高清片在线观看| 欧美欧美午夜aⅴ在线观看| 在线亚洲一区二区| 色婷婷激情一区二区三区| 91麻豆免费观看| 色综合天天性综合| 美腿丝袜在线亚洲一区| 久久国产日韩欧美精品| 久久福利资源站| 国产在线不卡一区| 国产激情视频一区二区三区欧美 | 国产午夜精品美女毛片视频| 国产午夜精品一区二区三区四区 | 欧美videos大乳护士334| 日韩精品自拍偷拍| 久久久不卡网国产精品一区| 国产视频一区二区在线观看| 国产日韩欧美精品一区| 亚洲视频免费在线| 亚洲最大的成人av| 免费看日韩a级影片| 国产一区二区三区| av在线一区二区三区| 欧美日精品一区视频| 欧美一二三区在线观看| 国产网站一区二区| 亚洲资源中文字幕| 琪琪一区二区三区| 成人黄色av网站在线| 欧美三级电影在线看| 日韩一区二区电影在线| 国产精品少妇自拍| 一区二区三区高清不卡| 久久精品999| 99精品久久99久久久久| 4hu四虎永久在线影院成人| 久久精品男人天堂av| 亚洲精品国产一区二区精华液| 日韩福利电影在线观看| 国产成人av自拍| 欧美日韩精品高清| 久久久久九九视频| 午夜婷婷国产麻豆精品| 国产福利一区二区| 欧美精品亚洲二区| 中文字幕国产一区二区| 天涯成人国产亚洲精品一区av| 国产成人激情av| 欧美肥大bbwbbw高潮| 中文字幕一区二区三中文字幕| 日韩国产在线一| 99麻豆久久久国产精品免费| 日韩欧美另类在线| 一区二区三区四区在线播放 | 欧美精品一卡两卡| 《视频一区视频二区| 久久精品国产一区二区三 | 成人国产视频在线观看| 精品三级在线观看| 日韩av电影天堂| 色噜噜偷拍精品综合在线| 久久九九国产精品| 久久精品国产成人一区二区三区| 色老汉一区二区三区| 国产精品色哟哟| 国产成人午夜精品5599| 欧美一级夜夜爽| 亚洲va欧美va国产va天堂影院| 91亚洲精品久久久蜜桃| 中文字幕va一区二区三区| 国产尤物一区二区| 精品国精品国产尤物美女| 日本亚洲天堂网| 777xxx欧美| 丝袜a∨在线一区二区三区不卡| 欧洲日韩一区二区三区| 综合久久久久久久| 成人毛片视频在线观看| 久久精品人人做| 国产成人啪免费观看软件| 久久久久久9999| 国产精品亚洲一区二区三区在线 | 国产一本一道久久香蕉| 久久一留热品黄| 国产一区二区福利| 国产午夜三级一区二区三| 国产成人综合视频|