misc/libfreetype/include/freetype/tttags.h
author koda
Thu, 25 Jul 2013 23:16:06 +0200
changeset 9371 f3840de881bd
parent 5172 88f2e05288ba
permissions -rw-r--r--
strip out our copy of libtremor SDL2_mixer comes with a more updated, better integrated version
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5172
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     1
/***************************************************************************/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     2
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     3
/*  tttags.h                                                               */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     4
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     5
/*    Tags for TrueType and OpenType tables (specification only).          */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     6
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     7
/*  Copyright 1996-2001, 2004, 2005, 2007, 2008 by                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     8
/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     9
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    10
/*  This file is part of the FreeType project, and may only be used,       */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    11
/*  modified, and distributed under the terms of the FreeType project      */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    12
/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    13
/*  this file you indicate that you have read the license and              */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    14
/*  understand and accept it fully.                                        */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    15
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    16
/***************************************************************************/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    17
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    18
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    19
#ifndef __TTAGS_H__
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    20
#define __TTAGS_H__
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    21
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    22
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    23
#include <ft2build.h>
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    24
#include FT_FREETYPE_H
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    25
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    26
#ifdef FREETYPE_H
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    27
#error "freetype.h of FreeType 1 has been loaded!"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    28
#error "Please fix the directory search order for header files"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    29
#error "so that freetype.h of FreeType 2 is found first."
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    30
#endif
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    31
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    32
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    33
FT_BEGIN_HEADER
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    34
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    35
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    36
#define TTAG_avar  FT_MAKE_TAG( 'a', 'v', 'a', 'r' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    37
#define TTAG_BASE  FT_MAKE_TAG( 'B', 'A', 'S', 'E' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    38
#define TTAG_bdat  FT_MAKE_TAG( 'b', 'd', 'a', 't' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    39
#define TTAG_BDF   FT_MAKE_TAG( 'B', 'D', 'F', ' ' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    40
#define TTAG_bhed  FT_MAKE_TAG( 'b', 'h', 'e', 'd' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    41
#define TTAG_bloc  FT_MAKE_TAG( 'b', 'l', 'o', 'c' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    42
#define TTAG_bsln  FT_MAKE_TAG( 'b', 's', 'l', 'n' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    43
#define TTAG_CFF   FT_MAKE_TAG( 'C', 'F', 'F', ' ' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    44
#define TTAG_CID   FT_MAKE_TAG( 'C', 'I', 'D', ' ' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    45
#define TTAG_cmap  FT_MAKE_TAG( 'c', 'm', 'a', 'p' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    46
#define TTAG_cvar  FT_MAKE_TAG( 'c', 'v', 'a', 'r' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    47
#define TTAG_cvt   FT_MAKE_TAG( 'c', 'v', 't', ' ' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    48
#define TTAG_DSIG  FT_MAKE_TAG( 'D', 'S', 'I', 'G' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    49
#define TTAG_EBDT  FT_MAKE_TAG( 'E', 'B', 'D', 'T' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    50
#define TTAG_EBLC  FT_MAKE_TAG( 'E', 'B', 'L', 'C' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    51
#define TTAG_EBSC  FT_MAKE_TAG( 'E', 'B', 'S', 'C' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    52
#define TTAG_feat  FT_MAKE_TAG( 'f', 'e', 'a', 't' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    53
#define TTAG_FOND  FT_MAKE_TAG( 'F', 'O', 'N', 'D' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    54
#define TTAG_fpgm  FT_MAKE_TAG( 'f', 'p', 'g', 'm' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    55
#define TTAG_fvar  FT_MAKE_TAG( 'f', 'v', 'a', 'r' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    56
#define TTAG_gasp  FT_MAKE_TAG( 'g', 'a', 's', 'p' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    57
#define TTAG_GDEF  FT_MAKE_TAG( 'G', 'D', 'E', 'F' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    58
#define TTAG_glyf  FT_MAKE_TAG( 'g', 'l', 'y', 'f' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    59
#define TTAG_GPOS  FT_MAKE_TAG( 'G', 'P', 'O', 'S' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    60
#define TTAG_GSUB  FT_MAKE_TAG( 'G', 'S', 'U', 'B' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    61
#define TTAG_gvar  FT_MAKE_TAG( 'g', 'v', 'a', 'r' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    62
#define TTAG_hdmx  FT_MAKE_TAG( 'h', 'd', 'm', 'x' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    63
#define TTAG_head  FT_MAKE_TAG( 'h', 'e', 'a', 'd' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    64
#define TTAG_hhea  FT_MAKE_TAG( 'h', 'h', 'e', 'a' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    65
#define TTAG_hmtx  FT_MAKE_TAG( 'h', 'm', 't', 'x' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    66
#define TTAG_JSTF  FT_MAKE_TAG( 'J', 'S', 'T', 'F' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    67
#define TTAG_just  FT_MAKE_TAG( 'j', 'u', 's', 't' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    68
#define TTAG_kern  FT_MAKE_TAG( 'k', 'e', 'r', 'n' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    69
#define TTAG_lcar  FT_MAKE_TAG( 'l', 'c', 'a', 'r' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    70
#define TTAG_loca  FT_MAKE_TAG( 'l', 'o', 'c', 'a' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    71
#define TTAG_LTSH  FT_MAKE_TAG( 'L', 'T', 'S', 'H' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    72
#define TTAG_LWFN  FT_MAKE_TAG( 'L', 'W', 'F', 'N' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    73
#define TTAG_MATH  FT_MAKE_TAG( 'M', 'A', 'T', 'H' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    74
#define TTAG_maxp  FT_MAKE_TAG( 'm', 'a', 'x', 'p' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    75
#define TTAG_META  FT_MAKE_TAG( 'M', 'E', 'T', 'A' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    76
#define TTAG_MMFX  FT_MAKE_TAG( 'M', 'M', 'F', 'X' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    77
#define TTAG_MMSD  FT_MAKE_TAG( 'M', 'M', 'S', 'D' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    78
#define TTAG_mort  FT_MAKE_TAG( 'm', 'o', 'r', 't' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    79
#define TTAG_morx  FT_MAKE_TAG( 'm', 'o', 'r', 'x' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    80
#define TTAG_name  FT_MAKE_TAG( 'n', 'a', 'm', 'e' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    81
#define TTAG_opbd  FT_MAKE_TAG( 'o', 'p', 'b', 'd' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    82
#define TTAG_OS2   FT_MAKE_TAG( 'O', 'S', '/', '2' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    83
#define TTAG_OTTO  FT_MAKE_TAG( 'O', 'T', 'T', 'O' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    84
#define TTAG_PCLT  FT_MAKE_TAG( 'P', 'C', 'L', 'T' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    85
#define TTAG_POST  FT_MAKE_TAG( 'P', 'O', 'S', 'T' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    86
#define TTAG_post  FT_MAKE_TAG( 'p', 'o', 's', 't' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    87
#define TTAG_prep  FT_MAKE_TAG( 'p', 'r', 'e', 'p' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    88
#define TTAG_prop  FT_MAKE_TAG( 'p', 'r', 'o', 'p' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    89
#define TTAG_sfnt  FT_MAKE_TAG( 's', 'f', 'n', 't' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    90
#define TTAG_SING  FT_MAKE_TAG( 'S', 'I', 'N', 'G' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    91
#define TTAG_trak  FT_MAKE_TAG( 't', 'r', 'a', 'k' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    92
#define TTAG_true  FT_MAKE_TAG( 't', 'r', 'u', 'e' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    93
#define TTAG_ttc   FT_MAKE_TAG( 't', 't', 'c', ' ' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    94
#define TTAG_ttcf  FT_MAKE_TAG( 't', 't', 'c', 'f' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    95
#define TTAG_TYP1  FT_MAKE_TAG( 'T', 'Y', 'P', '1' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    96
#define TTAG_typ1  FT_MAKE_TAG( 't', 'y', 'p', '1' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    97
#define TTAG_VDMX  FT_MAKE_TAG( 'V', 'D', 'M', 'X' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    98
#define TTAG_vhea  FT_MAKE_TAG( 'v', 'h', 'e', 'a' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    99
#define TTAG_vmtx  FT_MAKE_TAG( 'v', 'm', 't', 'x' )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   100
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   101
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   102
FT_END_HEADER
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   103
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   104
#endif /* __TTAGS_H__ */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   105
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   106
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   107
/* END */