Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4973 right-hear 1
/*******************************************************************
2
 *
3
 *  tttags.h
4
 *
5
 *    tags for TrueType tables (specification only).
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 TTAGS_H
19
#define TTAGS_H
20
 
21
#include "ttconfig.h"
22
#include "freetype.h"   /* for MAKE_TT_TAG() */
23
 
24
#define TTAG_BASE  MAKE_TT_TAG( 'B', 'A', 'S', 'E' )
25
#define TTAG_bloc  MAKE_TT_TAG( 'b', 'l', 'o', 'c' )
26
#define TTAG_bdat  MAKE_TT_TAG( 'b', 'd', 'a', 't' )
27
#define TTAG_cmap  MAKE_TT_TAG( 'c', 'm', 'a', 'p' )
28
#define TTAG_cvt   MAKE_TT_TAG( 'c', 'v', 't', ' ' )
29
#define TTAG_EBDT  MAKE_TT_TAG( 'E', 'B', 'D', 'T' )
30
#define TTAG_EBLC  MAKE_TT_TAG( 'E', 'B', 'L', 'C' )
31
#define TTAG_EBSC  MAKE_TT_TAG( 'E', 'B', 'S', 'C' )
32
#define TTAG_fpgm  MAKE_TT_TAG( 'f', 'p', 'g', 'm' )
33
#define TTAG_gasp  MAKE_TT_TAG( 'g', 'a', 's', 'p' )
34
#define TTAG_glyf  MAKE_TT_TAG( 'g', 'l', 'y', 'f' )
35
#define TTAG_GDEF  MAKE_TT_TAG( 'G', 'D', 'E', 'F' )
36
#define TTAG_GPOS  MAKE_TT_TAG( 'G', 'P', 'O', 'S' )
37
#define TTAG_GSUB  MAKE_TT_TAG( 'G', 'S', 'U', 'B' )
38
#define TTAG_hdmx  MAKE_TT_TAG( 'h', 'd', 'm', 'x' )
39
#define TTAG_head  MAKE_TT_TAG( 'h', 'e', 'a', 'd' )
40
#define TTAG_hhea  MAKE_TT_TAG( 'h', 'h', 'e', 'a' )
41
#define TTAG_hmtx  MAKE_TT_TAG( 'h', 'm', 't', 'x' )
42
#define TTAG_JSTF  MAKE_TT_TAG( 'J', 'S', 'T', 'F' )
43
#define TTAG_kern  MAKE_TT_TAG( 'k', 'e', 'r', 'n' )
44
#define TTAG_loca  MAKE_TT_TAG( 'l', 'o', 'c', 'a' )
45
#define TTAG_LTSH  MAKE_TT_TAG( 'L', 'T', 'S', 'H' )
46
#define TTAG_maxp  MAKE_TT_TAG( 'm', 'a', 'x', 'p' )
47
#define TTAG_name  MAKE_TT_TAG( 'n', 'a', 'm', 'e' )
48
#define TTAG_OS2   MAKE_TT_TAG( 'O', 'S', '/', '2' )
49
#define TTAG_PCLT  MAKE_TT_TAG( 'P', 'C', 'L', 'T' )
50
#define TTAG_post  MAKE_TT_TAG( 'p', 'o', 's', 't' )
51
#define TTAG_prep  MAKE_TT_TAG( 'p', 'r', 'e', 'p' )
52
#define TTAG_ttc   MAKE_TT_TAG( 't', 't', 'c', ' ' )
53
#define TTAG_ttcf  MAKE_TT_TAG( 't', 't', 'c', 'f' )
54
#define TTAG_VDMX  MAKE_TT_TAG( 'V', 'D', 'M', 'X' )
55
#define TTAG_vhea  MAKE_TT_TAG( 'v', 'h', 'e', 'a' )
56
#define TTAG_vmtx  MAKE_TT_TAG( 'v', 'm', 't', 'x' )
57
 
58
#endif /* TTAGS_H */
59
 
60
 
61
/* END */