FreeType 1.31.1

This commit is contained in:
2023-08-27 18:03:45 +02:00
commit 5edbb7a80a
454 changed files with 173977 additions and 0 deletions

38
lib/extend/ftxerr18.h Normal file
View File

@@ -0,0 +1,38 @@
/****************************************************************************/
/* */
/* Erwin Dieterich, 15. 10. 1997 */
/* - 15. 08. 1999 */
/* */
/* TT_ErrToString: translate error codes to character strings */
/* */
/* This extension provides internationalized error strings from the */
/* various error messages. It uses the "gettext" package where available */
/* or returns english/american message strings if not. */
/* */
/* If you do not want to use it, or if you encounter some problems */
/* compiling this file, try to disable nls support by configuring */
/* FreeType with ./configure --disable-nls */
/* */
/* */
/****************************************************************************/
#ifndef FTXERR18_H
#define FTXERR18_H
#include "freetype.h"
#ifdef __cplusplus
extern "C" {
#endif
EXPORT_DEF
TT_String* TT_ErrToString18( TT_Error i );
#ifdef __cplusplus
}
#endif
#endif /* FTXERR18_H */
/* END */