Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /*******************************************************************
  2.  *
  3.  *  ttgload.h                                                   1.0
  4.  *
  5.  *    TrueType Glyph Loader.
  6.  *
  7.  *  Copyright 1996-1999 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.  
  18. #ifndef TTGLOAD_H
  19. #define TTGLOAD_H
  20.  
  21. #include "ttconfig.h"
  22. #include "tttypes.h"
  23. #include "ttobjs.h"
  24.  
  25. #ifdef __cplusplus
  26.   extern "C" {
  27. #endif
  28.  
  29.  
  30.   LOCAL_DEF
  31.   void  TT_Get_Metrics( TT_Horizontal_Header*  header,
  32.                         UShort                 index,
  33.                         Short*                 bearing,
  34.                         UShort*                advance );
  35.  
  36.  
  37.   LOCAL_DEF
  38.   TT_Error  Load_TrueType_Glyph( PInstance  instance,
  39.                                  PGlyph     glyph,
  40.                                  UShort     glyph_index,
  41.                                  UShort     load_flags );
  42.  
  43. #ifdef __cplusplus
  44.   }
  45. #endif
  46.  
  47.  
  48. #endif /* TTGLOAD_H */
  49.  
  50.  
  51. /* END */
  52.