Fix OTS warning about `maxp.maxSizeOfInstructions`.
[ttfautohint.git] / lib / tawrtsys.h
blob502ec2be42568b5351e19fc4fd43849655bda973
1 /* tawrtsys.h */
3 /*
4 * Copyright (C) 2013-2022 by Werner Lemberg.
6 * This file is part of the ttfautohint library, and may only be used,
7 * modified, and distributed under the terms given in `COPYING'. By
8 * continuing to use, modify, or distribute this file you indicate that you
9 * have read `COPYING' and understand and accept it fully.
11 * The file `COPYING' mentioned in the previous paragraph is distributed
12 * with the ttfautohint library.
16 /* originally file `afwrtsys.h' (2013-Aug-05) from FreeType */
19 #ifndef TAWRTSYS_H_
20 #define TAWRTSYS_H_
22 /* Since preprocessor directives can't create other preprocessor */
23 /* directives, we have to include the header files manually. */
25 #include "tadummy.h"
26 #include "talatin.h"
27 #if 0
28 # include "tacjk.h"
29 # include "taindic.h"
30 #endif
31 #ifdef FT_OPTION_AUTOFIT2
32 # include "talatin2.h"
33 #endif
35 #endif /* TAWRTSYS_H_ */
38 /* The following part can be included multiple times. */
39 /* Define `WRITING_SYSTEM' as needed. */
42 /* Add new writing systems here. The arguments are the writing system */
43 /* name in lowercase and uppercase, respectively. */
45 WRITING_SYSTEM(dummy, DUMMY)
46 WRITING_SYSTEM(latin, LATIN)
47 #if 0
48 WRITING_SYSTEM(cjk, CJK)
49 WRITING_SYSTEM(indic, INDIC)
50 #endif
51 #ifdef FT_OPTION_AUTOFIT2
52 WRITING_SYSTEM(latin2, LATIN2)
53 #endif
55 /* end of tawrtsys.h */