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

其他游戏

开发平台:

Visual C++

  1. /***************************************************************************/
  2. /*                                                                         */
  3. /*  svttglyf.h                                                             */
  4. /*                                                                         */
  5. /*    The FreeType TrueType glyph service.                                 */
  6. /*                                                                         */
  7. /*  Copyright 2007 by David Turner.                                        */
  8. /*                                                                         */
  9. /*  This file is part of the FreeType project, and may only be used,       */
  10. /*  modified, and distributed under the terms of the FreeType project      */
  11. /*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
  12. /*  this file you indicate that you have read the license and              */
  13. /*  understand and accept it fully.                                        */
  14. /*                                                                         */
  15. /***************************************************************************/
  16. #ifndef __SVTTGLYF_H__
  17. #define __SVTTGLYF_H__
  18. #include FT_INTERNAL_SERVICE_H
  19. #include FT_TRUETYPE_TABLES_H
  20. FT_BEGIN_HEADER
  21. #define FT_SERVICE_ID_TT_GLYF "tt-glyf"
  22.   typedef FT_ULong
  23.   (*TT_Glyf_GetLocationFunc)( FT_Face    face,
  24.                               FT_UInt    gindex,
  25.                               FT_ULong  *psize );
  26.   FT_DEFINE_SERVICE( TTGlyf )
  27.   {
  28.     TT_Glyf_GetLocationFunc  get_location;
  29.   };
  30.   /* */
  31. FT_END_HEADER
  32. #endif /* __SVTTGLYF_H__ */
  33. /* END */