| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* cf2types.h */ | 3 /* cf2types.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* Adobe's code for defining data types (specification only). */ | 5 /* Adobe's code for defining data types (specification only). */ |
| 6 /* */ | 6 /* */ |
| 7 /* Copyright 2011-2013 Adobe Systems Incorporated. */ | 7 /* Copyright 2011-2013 Adobe Systems Incorporated. */ |
| 8 /* */ | 8 /* */ |
| 9 /* This software, and all works of authorship, whether in source or */ | 9 /* This software, and all works of authorship, whether in source or */ |
| 10 /* object code form as indicated by the copyright notice(s) included */ | 10 /* object code form as indicated by the copyright notice(s) included */ |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 /* have read and understood the terms and conditions of the */ | 32 /* have read and understood the terms and conditions of the */ |
| 33 /* FreeType Project License as well as those provided in this section, */ | 33 /* FreeType Project License as well as those provided in this section, */ |
| 34 /* and you accept them fully. */ | 34 /* and you accept them fully. */ |
| 35 /* */ | 35 /* */ |
| 36 /***************************************************************************/ | 36 /***************************************************************************/ |
| 37 | 37 |
| 38 | 38 |
| 39 #ifndef __CF2TYPES_H__ | 39 #ifndef __CF2TYPES_H__ |
| 40 #define __CF2TYPES_H__ | 40 #define __CF2TYPES_H__ |
| 41 | 41 |
| 42 #include "../../include/ft2build.h" | 42 #include <ft2build.h> |
| 43 #include "../../include/freetype/freetype.h" | 43 #include FT_FREETYPE_H |
| 44 | 44 |
| 45 | 45 |
| 46 FT_BEGIN_HEADER | 46 FT_BEGIN_HEADER |
| 47 | 47 |
| 48 | 48 |
| 49 /* | 49 /* |
| 50 * The data models that we expect to support are as follows: | 50 * The data models that we expect to support are as follows: |
| 51 * | 51 * |
| 52 * name char short int long long-long pointer example | 52 * name char short int long long-long pointer example |
| 53 * ----------------------------------------------------- | 53 * ----------------------------------------------------- |
| (...skipping 15 matching lines...) Expand all Loading... |
| 69 typedef FT_Int32 CF2_F16Dot16; | 69 typedef FT_Int32 CF2_F16Dot16; |
| 70 | 70 |
| 71 | 71 |
| 72 FT_END_HEADER | 72 FT_END_HEADER |
| 73 | 73 |
| 74 | 74 |
| 75 #endif /* __CF2TYPES_H__ */ | 75 #endif /* __CF2TYPES_H__ */ |
| 76 | 76 |
| 77 | 77 |
| 78 /* END */ | 78 /* END */ |
| OLD | NEW |