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