Files
freetype/lib/extend/ftxerr18.h
2023-08-27 18:03:45 +02:00

39 lines
1.5 KiB
C

/****************************************************************************/
/* */
/* 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 */