2018-06-03 09:01:17 +02:00
|
|
|
/****************************************************************************
|
|
|
|
*
|
|
|
|
* afranges.h
|
|
|
|
*
|
|
|
|
* Auto-fitter Unicode script ranges (specification).
|
|
|
|
*
|
2024-01-27 17:11:22 +01:00
|
|
|
* Copyright (C) 2013-2024 by
|
2018-06-03 09:01:17 +02:00
|
|
|
* David Turner, Robert Wilhelm, and Werner Lemberg.
|
|
|
|
*
|
|
|
|
* This file is part of the FreeType project, and may only be used,
|
|
|
|
* modified, and distributed under the terms of the FreeType project
|
|
|
|
* license, LICENSE.TXT. By continuing to use, modify, or distribute
|
|
|
|
* this file you indicate that you have read the license and
|
|
|
|
* understand and accept it fully.
|
|
|
|
*
|
|
|
|
*/
|
2013-12-19 15:45:24 +01:00
|
|
|
|
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#ifndef AFRANGES_H_
|
|
|
|
#define AFRANGES_H_
|
2013-12-19 15:45:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
#include "aftypes.h"
|
|
|
|
|
|
|
|
|
|
|
|
FT_BEGIN_HEADER
|
|
|
|
|
|
|
|
#undef SCRIPT
|
2015-12-23 23:25:03 +01:00
|
|
|
#define SCRIPT( s, S, d, h, H, ss ) \
|
2013-12-19 15:45:24 +01:00
|
|
|
extern const AF_Script_UniRangeRec af_ ## s ## _uniranges[];
|
|
|
|
|
2015-09-04 10:28:53 +02:00
|
|
|
#include "afscript.h"
|
|
|
|
|
|
|
|
#undef SCRIPT
|
2015-12-23 23:25:03 +01:00
|
|
|
#define SCRIPT( s, S, d, h, H, ss ) \
|
2015-09-30 17:52:42 +02:00
|
|
|
extern const AF_Script_UniRangeRec af_ ## s ## _nonbase_uniranges[];
|
2015-09-04 10:28:53 +02:00
|
|
|
|
2013-12-19 15:45:24 +01:00
|
|
|
#include "afscript.h"
|
|
|
|
|
|
|
|
/* */
|
|
|
|
|
|
|
|
FT_END_HEADER
|
|
|
|
|
2016-01-12 21:37:13 +01:00
|
|
|
#endif /* AFRANGES_H_ */
|
2013-12-19 15:45:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|