~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/freetype/src/autofit/afglobal.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __AF_GLOBAL_H__
 
2
#define __AF_GLOBAL_H__
 
3
 
 
4
#include "aftypes.h"
 
5
 
 
6
FT_BEGIN_HEADER
 
7
 
 
8
 /**************************************************************************/
 
9
 /**************************************************************************/
 
10
 /*****                                                                *****/
 
11
 /*****                F A C E   G L O B A L S                         *****/
 
12
 /*****                                                                *****/
 
13
 /**************************************************************************/
 
14
 /**************************************************************************/
 
15
 
 
16
 
 
17
 /*
 
18
  *  models the global hints data for a given face, decomposed into
 
19
  *  script-specific items..
 
20
  *
 
21
  */
 
22
  typedef struct AF_FaceGlobalsRec_*   AF_FaceGlobals;
 
23
 
 
24
 
 
25
  FT_LOCAL( FT_Error )
 
26
  af_face_globals_new( FT_Face          face,
 
27
                       AF_FaceGlobals  *aglobals );
 
28
 
 
29
  FT_LOCAL( FT_Error )
 
30
  af_face_globals_get_metrics( AF_FaceGlobals     globals,
 
31
                               FT_UInt            gindex,
 
32
                               AF_ScriptMetrics  *ametrics );
 
33
 
 
34
  FT_LOCAL( void )
 
35
  af_face_globals_free( AF_FaceGlobals  globals );
 
36
 
 
37
 /* */
 
38
 
 
39
FT_END_HEADER
 
40
 
 
41
#endif /* __AF_GLOBALS_H__ */