| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* ftheader.h */ | 3 /* ftheader.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* Build macros of the FreeType 2 library. */ | 5 /* Build macros of the FreeType 2 library. */ |
| 6 /* */ | 6 /* */ |
| 7 /* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2010 by */ | 7 /* Copyright 1996-2008, 2010, 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 |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 * A macro used in #include statements to name the file containing the | 311 * A macro used in #include statements to name the file containing the |
| 312 * renderer module management API of FreeType~2. | 312 * renderer module management API of FreeType~2. |
| 313 * | 313 * |
| 314 */ | 314 */ |
| 315 #define FT_RENDER_H <freetype/ftrender.h> | 315 #define FT_RENDER_H <freetype/ftrender.h> |
| 316 | 316 |
| 317 | 317 |
| 318 /************************************************************************* | 318 /************************************************************************* |
| 319 * | 319 * |
| 320 * @macro: | 320 * @macro: |
| 321 * FT_AUTOHINTER_H |
| 322 * |
| 323 * @description: |
| 324 * A macro used in #include statements to name the file containing |
| 325 * structures and macros related to the auto-hinting module. |
| 326 * |
| 327 */ |
| 328 #define FT_AUTOHINTER_H <freetype/ftautoh.h> |
| 329 |
| 330 |
| 331 /************************************************************************* |
| 332 * |
| 333 * @macro: |
| 334 * FT_CFF_DRIVER_H |
| 335 * |
| 336 * @description: |
| 337 * A macro used in #include statements to name the file containing |
| 338 * structures and macros related to the CFF driver module. |
| 339 * |
| 340 */ |
| 341 #define FT_CFF_DRIVER_H <freetype/ftcffdrv.h> |
| 342 |
| 343 |
| 344 /************************************************************************* |
| 345 * |
| 346 * @macro: |
| 347 * FT_TRUETYPE_DRIVER_H |
| 348 * |
| 349 * @description: |
| 350 * A macro used in #include statements to name the file containing |
| 351 * structures and macros related to the TrueType driver module. |
| 352 * |
| 353 */ |
| 354 #define FT_TRUETYPE_DRIVER_H <freetype/ftttdrv.h> |
| 355 |
| 356 |
| 357 /************************************************************************* |
| 358 * |
| 359 * @macro: |
| 321 * FT_TYPE1_TABLES_H | 360 * FT_TYPE1_TABLES_H |
| 322 * | 361 * |
| 323 * @description: | 362 * @description: |
| 324 * A macro used in #include statements to name the file containing the | 363 * A macro used in #include statements to name the file containing the |
| 325 * types and API specific to the Type~1 format. | 364 * types and API specific to the Type~1 format. |
| 326 * | 365 * |
| 327 */ | 366 */ |
| 328 #define FT_TYPE1_TABLES_H <freetype/t1tables.h> | 367 #define FT_TYPE1_TABLES_H <freetype/t1tables.h> |
| 329 | 368 |
| 330 | 369 |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 784 #ifdef FT2_BUILD_LIBRARY | 823 #ifdef FT2_BUILD_LIBRARY |
| 785 #define FT_INTERNAL_INTERNAL_H <freetype/internal/internal.h> | 824 #define FT_INTERNAL_INTERNAL_H <freetype/internal/internal.h> |
| 786 #include FT_INTERNAL_INTERNAL_H | 825 #include FT_INTERNAL_INTERNAL_H |
| 787 #endif /* FT2_BUILD_LIBRARY */ | 826 #endif /* FT2_BUILD_LIBRARY */ |
| 788 | 827 |
| 789 | 828 |
| 790 #endif /* __FT2_BUILD_H__ */ | 829 #endif /* __FT2_BUILD_H__ */ |
| 791 | 830 |
| 792 | 831 |
| 793 /* END */ | 832 /* END */ |
| OLD | NEW |