5172
|
1 |
/***************************************************************************/
|
|
2 |
/* */
|
|
3 |
/* gxvalid.c */
|
|
4 |
/* */
|
|
5 |
/* FreeType validator for TrueTypeGX/AAT tables (body only). */
|
|
6 |
/* */
|
|
7 |
/* Copyright 2005 by suzuki toshiya, Masatake YAMATO, Red Hat K.K., */
|
|
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 |
#define FT_MAKE_OPTION_SINGLE_OBJECT
|
|
19 |
|
|
20 |
#include <ft2build.h>
|
|
21 |
|
|
22 |
#include "gxvfeat.c"
|
|
23 |
#include "gxvcommn.c"
|
|
24 |
#include "gxvbsln.c"
|
|
25 |
#include "gxvtrak.c"
|
|
26 |
#include "gxvjust.c"
|
|
27 |
#include "gxvmort.c"
|
|
28 |
#include "gxvmort0.c"
|
|
29 |
#include "gxvmort1.c"
|
|
30 |
#include "gxvmort2.c"
|
|
31 |
#include "gxvmort4.c"
|
|
32 |
#include "gxvmort5.c"
|
|
33 |
#include "gxvmorx.c"
|
|
34 |
#include "gxvmorx0.c"
|
|
35 |
#include "gxvmorx1.c"
|
|
36 |
#include "gxvmorx2.c"
|
|
37 |
#include "gxvmorx4.c"
|
|
38 |
#include "gxvmorx5.c"
|
|
39 |
#include "gxvkern.c"
|
|
40 |
#include "gxvopbd.c"
|
|
41 |
#include "gxvprop.c"
|
|
42 |
#include "gxvlcar.c"
|
|
43 |
#include "gxvmod.c"
|
|
44 |
|
|
45 |
|
|
46 |
/* END */
|