1/****************************************************************************
2 *
3 * afranges.h
4 *
5 * Auto-fitter Unicode script ranges (specification).
6 *
7 * Copyright (C) 2013-2023 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
19#ifndef AFRANGES_H_
20#define AFRANGES_H_
21
22
23#include "aftypes.h"
24
25
26FT_BEGIN_HEADER
27
28#undef SCRIPT
29#define SCRIPT( s, S, d, h, H, ss ) \
30 extern const AF_Script_UniRangeRec af_ ## s ## _uniranges[];
31
32#include "afscript.h"
33
34#undef SCRIPT
35#define SCRIPT( s, S, d, h, H, ss ) \
36 extern const AF_Script_UniRangeRec af_ ## s ## _nonbase_uniranges[];
37
38#include "afscript.h"
39
40 /* */
41
42FT_END_HEADER
43
44#endif /* AFRANGES_H_ */
45
46
47/* END */
48