vrshoot
annotate libs/ft2static/freetype/ttunpat.h @ 2:334d17aed7de
visual studio project files
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sun, 02 Feb 2014 18:36:38 +0200 |
parents | |
children |
rev | line source |
---|---|
nuclear@0 | 1 /***************************************************************************/ |
nuclear@0 | 2 /* */ |
nuclear@0 | 3 /* ttunpat.h */ |
nuclear@0 | 4 /* */ |
nuclear@0 | 5 /* Definitions for the unpatented TrueType hinting system */ |
nuclear@0 | 6 /* */ |
nuclear@0 | 7 /* Copyright 2003, 2006 by */ |
nuclear@0 | 8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ |
nuclear@0 | 9 /* */ |
nuclear@0 | 10 /* Written by Graham Asher <graham.asher@btinternet.com> */ |
nuclear@0 | 11 /* */ |
nuclear@0 | 12 /* This file is part of the FreeType project, and may only be used, */ |
nuclear@0 | 13 /* modified, and distributed under the terms of the FreeType project */ |
nuclear@0 | 14 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ |
nuclear@0 | 15 /* this file you indicate that you have read the license and */ |
nuclear@0 | 16 /* understand and accept it fully. */ |
nuclear@0 | 17 /* */ |
nuclear@0 | 18 /***************************************************************************/ |
nuclear@0 | 19 |
nuclear@0 | 20 |
nuclear@0 | 21 #ifndef __TTUNPAT_H__ |
nuclear@0 | 22 #define __TTUNPAT_H__ |
nuclear@0 | 23 |
nuclear@0 | 24 |
nuclear@0 | 25 #include <ft2build.h> |
nuclear@0 | 26 #include FT_FREETYPE_H |
nuclear@0 | 27 |
nuclear@0 | 28 #ifdef FREETYPE_H |
nuclear@0 | 29 #error "freetype.h of FreeType 1 has been loaded!" |
nuclear@0 | 30 #error "Please fix the directory search order for header files" |
nuclear@0 | 31 #error "so that freetype.h of FreeType 2 is found first." |
nuclear@0 | 32 #endif |
nuclear@0 | 33 |
nuclear@0 | 34 |
nuclear@0 | 35 FT_BEGIN_HEADER |
nuclear@0 | 36 |
nuclear@0 | 37 |
nuclear@0 | 38 /*************************************************************************** |
nuclear@0 | 39 * |
nuclear@0 | 40 * @constant: |
nuclear@0 | 41 * FT_PARAM_TAG_UNPATENTED_HINTING |
nuclear@0 | 42 * |
nuclear@0 | 43 * @description: |
nuclear@0 | 44 * A constant used as the tag of an @FT_Parameter structure to indicate |
nuclear@0 | 45 * that unpatented methods only should be used by the TrueType bytecode |
nuclear@0 | 46 * interpreter for a typeface opened by @FT_Open_Face. |
nuclear@0 | 47 * |
nuclear@0 | 48 */ |
nuclear@0 | 49 #define FT_PARAM_TAG_UNPATENTED_HINTING FT_MAKE_TAG( 'u', 'n', 'p', 'a' ) |
nuclear@0 | 50 |
nuclear@0 | 51 /* */ |
nuclear@0 | 52 |
nuclear@0 | 53 FT_END_HEADER |
nuclear@0 | 54 |
nuclear@0 | 55 |
nuclear@0 | 56 #endif /* __TTUNPAT_H__ */ |
nuclear@0 | 57 |
nuclear@0 | 58 |
nuclear@0 | 59 /* END */ |