| 1 | /**************************************************************************** |
| 2 | * |
| 3 | * afws-iter.h |
| 4 | * |
| 5 | * Auto-fitter writing systems iterator (specification only). |
| 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 | /* This header may be included multiple times. */ |
| 19 | /* Define `WRITING_SYSTEM' as needed. */ |
| 20 | |
| 21 | |
| 22 | /* Add new writing systems here. The arguments are the writing system */ |
| 23 | /* name in lowercase and uppercase, respectively. */ |
| 24 | |
| 25 | WRITING_SYSTEM( dummy, DUMMY ) |
| 26 | WRITING_SYSTEM( latin, LATIN ) |
| 27 | WRITING_SYSTEM( cjk, CJK ) |
| 28 | WRITING_SYSTEM( indic, INDIC ) |
| 29 | |
| 30 | |
| 31 | /* END */ |
| 32 | |