4 * Copyright (C) 2011-2020 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.
19 /* error message strings; */
20 /* we concatenate FreeType and ttfautohint messages into one structure */
22 typedef const struct TA_error_
28 static TA_error TA_Errors
[] =
31 #define FT_ERRORDEF(e, v, s) { e, s },
32 #define FT_ERROR_START_LIST {
33 #define FT_ERROR_END_LIST /* empty */
36 #undef TTFAUTOHINT_ERRORS_H_
37 #define TA_ERRORDEF(e, v, s) { e, s },
38 #define TA_ERROR_START_LIST /* empty */
39 #define TA_ERROR_END_LIST { 0, NULL } };
40 #include <ttfautohint-errors.h>
44 TA_get_error_message(FT_Error error
)
46 TA_error
* e
= TA_Errors
;
49 while (e
->err_code
|| e
->err_msg
)
51 if (e
->err_code
== error
)
59 /* end of taerror.c */