| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* ttnameid.h */ | 3 /* ttnameid.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* TrueType name ID definitions (specification only). */ | 5 /* TrueType name ID definitions (specification only). */ |
| 6 /* */ | 6 /* */ |
| 7 /* Copyright 1996-2004, 2006-2008, 2012 by */ | 7 /* Copyright 1996-2004, 2006-2008, 2012, 2013 by */ |
| 8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ | 8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ |
| 9 /* */ | 9 /* */ |
| 10 /* This file is part of the FreeType project, and may only be used, */ | 10 /* This file is part of the FreeType project, and may only be used, */ |
| 11 /* modified, and distributed under the terms of the FreeType project */ | 11 /* modified, and distributed under the terms of the FreeType project */ |
| 12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ | 12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ |
| 13 /* this file you indicate that you have read the license and */ | 13 /* this file you indicate that you have read the license and */ |
| 14 /* understand and accept it fully. */ | 14 /* understand and accept it fully. */ |
| 15 /* */ | 15 /* */ |
| 16 /***************************************************************************/ | 16 /***************************************************************************/ |
| 17 | 17 |
| 18 | 18 |
| 19 #ifndef __TTNAMEID_H__ | 19 #ifndef __TTNAMEID_H__ |
| 20 #define __TTNAMEID_H__ | 20 #define __TTNAMEID_H__ |
| 21 | 21 |
| 22 | 22 |
| 23 #include "../ft2build.h" | 23 #include <ft2build.h> |
| 24 | 24 |
| 25 | 25 |
| 26 FT_BEGIN_HEADER | 26 FT_BEGIN_HEADER |
| 27 | 27 |
| 28 | 28 |
| 29 /*************************************************************************/ | 29 /*************************************************************************/ |
| 30 /* */ | 30 /* */ |
| 31 /* <Section> */ | 31 /* <Section> */ |
| 32 /* truetype_tables */ | 32 /* truetype_tables */ |
| 33 /* */ | 33 /* */ |
| (...skipping 1167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1201 #endif | 1201 #endif |
| 1202 | 1202 |
| 1203 | 1203 |
| 1204 #ifndef HAVE_LIMIT_ON_IDENTS | 1204 #ifndef HAVE_LIMIT_ON_IDENTS |
| 1205 | 1205 |
| 1206 | 1206 |
| 1207 /*************************************************************************/ | 1207 /*************************************************************************/ |
| 1208 /* */ | 1208 /* */ |
| 1209 /* Here some alias #defines in order to be clearer. */ | 1209 /* Here some alias #defines in order to be clearer. */ |
| 1210 /* */ | 1210 /* */ |
| 1211 /* These are not always #defined to stay within the 31~character limit */ | 1211 /* These are not always #defined to stay within the 31~character limit, */ |
| 1212 /* which some compilers have. */ | 1212 /* which some compilers have. */ |
| 1213 /* */ | 1213 /* */ |
| 1214 /* Credits go to Dave Hoo <dhoo@flash.net> for pointing out that modern */ | 1214 /* Credits go to Dave Hoo <dhoo@flash.net> for pointing out that modern */ |
| 1215 /* Borland compilers (read: from BC++ 3.1 on) can increase this limit. */ | 1215 /* Borland compilers (read: from BC++ 3.1 on) can increase this limit. */ |
| 1216 /* If you get a warning with such a compiler, use the -i40 switch. */ | 1216 /* If you get a warning with such a compiler, use the -i40 switch. */ |
| 1217 /* */ | 1217 /* */ |
| 1218 #define TT_UCR_ARABIC_PRESENTATION_FORMS_A \ | 1218 #define TT_UCR_ARABIC_PRESENTATION_FORMS_A \ |
| 1219 TT_UCR_ARABIC_PRESENTATIONS_A | 1219 TT_UCR_ARABIC_PRESENTATIONS_A |
| 1220 #define TT_UCR_ARABIC_PRESENTATION_FORMS_B \ | 1220 #define TT_UCR_ARABIC_PRESENTATION_FORMS_B \ |
| 1221 TT_UCR_ARABIC_PRESENTATIONS_B | 1221 TT_UCR_ARABIC_PRESENTATIONS_B |
| 1222 | 1222 |
| 1223 #define TT_UCR_COMBINING_DIACRITICAL_MARKS \ | 1223 #define TT_UCR_COMBINING_DIACRITICAL_MARKS \ |
| 1224 TT_UCR_COMBINING_DIACRITICS | 1224 TT_UCR_COMBINING_DIACRITICS |
| 1225 #define TT_UCR_COMBINING_DIACRITICAL_MARKS_SYMB \ | 1225 #define TT_UCR_COMBINING_DIACRITICAL_MARKS_SYMB \ |
| 1226 TT_UCR_COMBINING_DIACRITICS_SYMB | 1226 TT_UCR_COMBINING_DIACRITICS_SYMB |
| 1227 | 1227 |
| 1228 | 1228 |
| 1229 #endif /* !HAVE_LIMIT_ON_IDENTS */ | 1229 #endif /* !HAVE_LIMIT_ON_IDENTS */ |
| 1230 | 1230 |
| 1231 | 1231 |
| 1232 FT_END_HEADER | 1232 FT_END_HEADER |
| 1233 | 1233 |
| 1234 #endif /* __TTNAMEID_H__ */ | 1234 #endif /* __TTNAMEID_H__ */ |
| 1235 | 1235 |
| 1236 | 1236 |
| 1237 /* END */ | 1237 /* END */ |
| OLD | NEW |