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

其他游戏

开发平台:

Visual C++

  1. /***************************************************************************/
  2. /*                                                                         */
  3. /*  svbdf.h                                                                */
  4. /*                                                                         */
  5. /*    The FreeType BDF 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 __SVBDF_H__
  18. #define __SVBDF_H__
  19. #include FT_BDF_H
  20. #include FT_INTERNAL_SERVICE_H
  21. FT_BEGIN_HEADER
  22. #define FT_SERVICE_ID_BDF  "bdf"
  23.   typedef FT_Error
  24.   (*FT_BDF_GetCharsetIdFunc)( FT_Face       face,
  25.                               const char*  *acharset_encoding,
  26.                               const char*  *acharset_registry );
  27.   typedef FT_Error
  28.   (*FT_BDF_GetPropertyFunc)( FT_Face           face,
  29.                              const char*       prop_name,
  30.                              BDF_PropertyRec  *aproperty );
  31.   FT_DEFINE_SERVICE( BDF )
  32.   {
  33.     FT_BDF_GetCharsetIdFunc  get_charset_id;
  34.     FT_BDF_GetPropertyFunc   get_property;
  35.   };
  36.   /* */
  37. FT_END_HEADER
  38. #endif /* __SVBDF_H__ */
  39. /* END */