Hash :
76a5f623
        
        Author :
  
        
        Date :
2000-11-04T01:55:49
        
      
major reformatting of the sources: FT_EXPORT_DEF => FT_EXPORT FT_EXPORT_FUNC => FT_EXPORT_DEF BASE_DEF => FT_BASE BASE_FUNC => FT_BASE_DEF LOCAL_DEF => FT_LOCAL LOCAL_FUNC => FT_LOCAL_DEF LOCAL_FUNC_X => FT_CALLBACK_DEF LOCAL_DEF_X => FT_CALLBACK_TABLE FT_CPLUSPLUS => FT_CALLBACK_TABLE_DEF
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
/***************************************************************************/
/*                                                                         */
/*  ahhint.h                                                               */
/*                                                                         */
/*    Glyph hinter (declaration).                                          */
/*                                                                         */
/*  Copyright 2000 Catharon Productions Inc.                               */
/*  Author: David Turner                                                   */
/*                                                                         */
/*  This file is part of the Catharon Typography Project and shall only    */
/*  be used, modified, and distributed under the terms of the Catharon     */
/*  Open Source License that should come with this file under the name     */
/*  `CatharonLicense.txt'.  By continuing to use, modify, or distribute    */
/*  this file you indicate that you have read the license and              */
/*  understand and accept it fully.                                        */
/*                                                                         */
/*  Note that this license is compatible with the FreeType license.        */
/*                                                                         */
/***************************************************************************/
#ifndef AHHINT_H
#define AHHINT_H
#ifdef FT_FLAT_COMPILE
#include "ahglobal.h"
#else
#include <autohint/ahglobal.h>
#endif
#ifdef __cplusplus
  extern "C" {
#endif
#define AH_HINT_DEFAULT        0
#define AH_HINT_NO_ALIGNMENT   1
#define AH_HINT_NO_HORZ_EDGES  0x20000L
#define AH_HINT_NO_VERT_EDGES  0x40000L
  /* create a new empty hinter object */
  FT_LOCAL
  FT_Error ah_hinter_new( FT_Library   library,
                          AH_Hinter**  ahinter );
  /* Load a hinted glyph in the hinter */
  FT_LOCAL
  FT_Error  ah_hinter_load_glyph( AH_Hinter*    hinter,
                                  FT_GlyphSlot  slot,
                                  FT_Size       size,
                                  FT_UInt       glyph_index,
                                  FT_Int        load_flags );
  /* finalize a hinter object */
  FT_LOCAL
  void  ah_hinter_done( AH_Hinter*  hinter );
  FT_LOCAL
  void  ah_hinter_done_face_globals( AH_Face_Globals*  globals );
  FT_LOCAL
  void  ah_hinter_get_global_hints( AH_Hinter*  hinter,
                                    FT_Face     face,
                                    void**      global_hints,
                                    long*       global_len );
  FT_LOCAL
  void  ah_hinter_done_global_hints( AH_Hinter*  hinter,
                                     void*       global_hints );
#ifdef __cplusplus
  }
#endif
#endif /* AHHINT_H */
/* END */