| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* cf2ft.h */ | 3 /* cf2ft.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* FreeType Glue Component to Adobe's Interpreter (specification). */ | 5 /* FreeType Glue Component to Adobe's Interpreter (specification). */ |
| 6 /* */ | 6 /* */ |
| 7 /* Copyright 2013 Adobe Systems Incorporated. */ | 7 /* Copyright 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 FT_LOCAL( CF2_Int ) | 97 FT_LOCAL( CF2_Int ) |
| 98 cf2_getLanguageGroup( CFF_Decoder* decoder ); | 98 cf2_getLanguageGroup( CFF_Decoder* decoder ); |
| 99 | 99 |
| 100 FT_LOCAL( CF2_Int ) | 100 FT_LOCAL( CF2_Int ) |
| 101 cf2_initGlobalRegionBuffer( CFF_Decoder* decoder, | 101 cf2_initGlobalRegionBuffer( CFF_Decoder* decoder, |
| 102 CF2_UInt idx, | 102 CF2_UInt idx, |
| 103 CF2_Buffer buf ); | 103 CF2_Buffer buf ); |
| 104 FT_LOCAL( FT_Error ) | 104 FT_LOCAL( FT_Error ) |
| 105 cf2_getSeacComponent( CFF_Decoder* decoder, | 105 cf2_getSeacComponent( CFF_Decoder* decoder, |
| 106 CF2_UInt code, | 106 CF2_Int code, |
| 107 CF2_Buffer buf ); | 107 CF2_Buffer buf ); |
| 108 FT_LOCAL( void ) | 108 FT_LOCAL( void ) |
| 109 cf2_freeSeacComponent( CFF_Decoder* decoder, | 109 cf2_freeSeacComponent( CFF_Decoder* decoder, |
| 110 CF2_Buffer buf ); | 110 CF2_Buffer buf ); |
| 111 FT_LOCAL( CF2_Int ) | 111 FT_LOCAL( CF2_Int ) |
| 112 cf2_initLocalRegionBuffer( CFF_Decoder* decoder, | 112 cf2_initLocalRegionBuffer( CFF_Decoder* decoder, |
| 113 CF2_UInt idx, | 113 CF2_UInt idx, |
| 114 CF2_Buffer buf ); | 114 CF2_Buffer buf ); |
| 115 | 115 |
| 116 FT_LOCAL( CF2_Fixed ) | 116 FT_LOCAL( CF2_Fixed ) |
| (...skipping 21 matching lines...) Expand all Loading... |
| 138 cf2_outline_close( CF2_Outline outline ); | 138 cf2_outline_close( CF2_Outline outline ); |
| 139 | 139 |
| 140 | 140 |
| 141 FT_END_HEADER | 141 FT_END_HEADER |
| 142 | 142 |
| 143 | 143 |
| 144 #endif /* __CF2FT_H__ */ | 144 #endif /* __CF2FT_H__ */ |
| 145 | 145 |
| 146 | 146 |
| 147 /* END */ | 147 /* END */ |
| OLD | NEW |