1*37da2899SCharles.Forsyth /***************************************************************************/ 2*37da2899SCharles.Forsyth /* */ 3*37da2899SCharles.Forsyth /* t42error.h */ 4*37da2899SCharles.Forsyth /* */ 5*37da2899SCharles.Forsyth /* Type 42 error codes (specification only). */ 6*37da2899SCharles.Forsyth /* */ 7*37da2899SCharles.Forsyth /* Copyright 2002 by */ 8*37da2899SCharles.Forsyth /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9*37da2899SCharles.Forsyth /* */ 10*37da2899SCharles.Forsyth /* This file is part of the FreeType project, and may only be used, */ 11*37da2899SCharles.Forsyth /* modified, and distributed under the terms of the FreeType project */ 12*37da2899SCharles.Forsyth /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13*37da2899SCharles.Forsyth /* this file you indicate that you have read the license and */ 14*37da2899SCharles.Forsyth /* understand and accept it fully. */ 15*37da2899SCharles.Forsyth /* */ 16*37da2899SCharles.Forsyth /***************************************************************************/ 17*37da2899SCharles.Forsyth 18*37da2899SCharles.Forsyth 19*37da2899SCharles.Forsyth /*************************************************************************/ 20*37da2899SCharles.Forsyth /* */ 21*37da2899SCharles.Forsyth /* This file is used to define the Type 42 error enumeration constants. */ 22*37da2899SCharles.Forsyth /* */ 23*37da2899SCharles.Forsyth /*************************************************************************/ 24*37da2899SCharles.Forsyth 25*37da2899SCharles.Forsyth #ifndef __T42ERROR_H__ 26*37da2899SCharles.Forsyth #define __T42ERROR_H__ 27*37da2899SCharles.Forsyth 28*37da2899SCharles.Forsyth #include FT_MODULE_ERRORS_H 29*37da2899SCharles.Forsyth 30*37da2899SCharles.Forsyth #undef __FTERRORS_H__ 31*37da2899SCharles.Forsyth 32*37da2899SCharles.Forsyth #define FT_ERR_PREFIX T42_Err_ 33*37da2899SCharles.Forsyth #define FT_ERR_BASE FT_Mod_Err_T42 34*37da2899SCharles.Forsyth 35*37da2899SCharles.Forsyth #include FT_ERRORS_H 36*37da2899SCharles.Forsyth 37*37da2899SCharles.Forsyth #endif /* __T42ERROR_H__ */ 38*37da2899SCharles.Forsyth 39*37da2899SCharles.Forsyth 40*37da2899SCharles.Forsyth /* END */ 41