michael@0: /***************************************************************************/ michael@0: /* */ michael@0: /* ttunpat.h */ michael@0: /* */ michael@0: /* Definitions for the unpatented TrueType hinting system */ michael@0: /* */ michael@0: /* Copyright 2003, 2006 by */ michael@0: /* David Turner, Robert Wilhelm, and Werner Lemberg. */ michael@0: /* */ michael@0: /* Written by Graham Asher */ michael@0: /* */ michael@0: /* This file is part of the FreeType project, and may only be used, */ michael@0: /* modified, and distributed under the terms of the FreeType project */ michael@0: /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ michael@0: /* this file you indicate that you have read the license and */ michael@0: /* understand and accept it fully. */ michael@0: /* */ michael@0: /***************************************************************************/ michael@0: michael@0: michael@0: #ifndef __TTUNPAT_H__ michael@0: #define __TTUNPAT_H__ michael@0: michael@0: michael@0: #include michael@0: #include FT_FREETYPE_H michael@0: michael@0: #ifdef FREETYPE_H michael@0: #error "freetype.h of FreeType 1 has been loaded!" michael@0: #error "Please fix the directory search order for header files" michael@0: #error "so that freetype.h of FreeType 2 is found first." michael@0: #endif michael@0: michael@0: michael@0: FT_BEGIN_HEADER michael@0: michael@0: michael@0: /*************************************************************************** michael@0: * michael@0: * @constant: michael@0: * FT_PARAM_TAG_UNPATENTED_HINTING michael@0: * michael@0: * @description: michael@0: * A constant used as the tag of an @FT_Parameter structure to indicate michael@0: * that unpatented methods only should be used by the TrueType bytecode michael@0: * interpreter for a typeface opened by @FT_Open_Face. michael@0: * michael@0: */ michael@0: #define FT_PARAM_TAG_UNPATENTED_HINTING FT_MAKE_TAG( 'u', 'n', 'p', 'a' ) michael@0: michael@0: /* */ michael@0: michael@0: FT_END_HEADER michael@0: michael@0: michael@0: #endif /* __TTUNPAT_H__ */ michael@0: michael@0: michael@0: /* END */