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

其他游戏

开发平台:

Visual C++

  1. /***************************************************************************/
  2. /*                                                                         */
  3. /*  sfobjs.h                                                               */
  4. /*                                                                         */
  5. /*    SFNT object management (specification).                              */
  6. /*                                                                         */
  7. /*  Copyright 1996-2001, 2002 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 __SFOBJS_H__
  18. #define __SFOBJS_H__
  19. #include <ft2build.h>
  20. #include FT_INTERNAL_SFNT_H
  21. #include FT_INTERNAL_OBJECTS_H
  22. FT_BEGIN_HEADER
  23.   FT_LOCAL( FT_Error )
  24.   sfnt_init_face( FT_Stream      stream,
  25.                   TT_Face        face,
  26.                   FT_Int         face_index,
  27.                   FT_Int         num_params,
  28.                   FT_Parameter*  params );
  29.   FT_LOCAL( FT_Error )
  30.   sfnt_load_face( FT_Stream      stream,
  31.                   TT_Face        face,
  32.                   FT_Int         face_index,
  33.                   FT_Int         num_params,
  34.                   FT_Parameter*  params );
  35.   FT_LOCAL( void )
  36.   sfnt_done_face( TT_Face  face );
  37. FT_END_HEADER
  38. #endif /* __SFDRIVER_H__ */
  39. /* END */