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

其他游戏

开发平台:

Visual C++

  1. /***************************************************************************/
  2. /*                                                                         */
  3. /*  svgldict.h                                                             */
  4. /*                                                                         */
  5. /*    The FreeType glyph dictionary services (specification).              */
  6. /*                                                                         */
  7. /*  Copyright 2003 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. #ifndef __SVGLDICT_H__
  18. #define __SVGLDICT_H__
  19. #include FT_INTERNAL_SERVICE_H
  20. FT_BEGIN_HEADER
  21.   /*
  22.    *  A service used to retrieve glyph names, as well as to find the
  23.    *  index of a given glyph name in a font.
  24.    *
  25.    */
  26. #define FT_SERVICE_ID_GLYPH_DICT  "glyph-dict"
  27.   typedef FT_Error
  28.   (*FT_GlyphDict_GetNameFunc)( FT_Face     face,
  29.                                FT_UInt     glyph_index,
  30.                                FT_Pointer  buffer,
  31.                                FT_UInt     buffer_max );
  32.   typedef FT_UInt
  33.   (*FT_GlyphDict_NameIndexFunc)( FT_Face     face,
  34.                                  FT_String*  glyph_name );
  35.   FT_DEFINE_SERVICE( GlyphDict )
  36.   {
  37.     FT_GlyphDict_GetNameFunc    get_name;
  38.     FT_GlyphDict_NameIndexFunc  name_index;  /* optional */
  39.   };
  40.   /* */
  41. FT_END_HEADER
  42. #endif /* __SVGLDICT_H__ */