| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* afmparse.h */ | 3 /* afmparse.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* AFM parser (specification). */ | 5 /* AFM parser (specification). */ |
| 6 /* */ | 6 /* */ |
| 7 /* Copyright 2006 by */ | 7 /* Copyright 2006 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 __AFMPARSE_H__ | 19 #ifndef __AFMPARSE_H__ |
| 20 #define __AFMPARSE_H__ | 20 #define __AFMPARSE_H__ |
| 21 | 21 |
| 22 | 22 |
| 23 #include "../../include/ft2build.h" | 23 #include <ft2build.h> |
| 24 #include "../../include/freetype/internal/psaux.h" | 24 #include FT_INTERNAL_POSTSCRIPT_AUX_H |
| 25 | 25 |
| 26 | 26 |
| 27 FT_BEGIN_HEADER | 27 FT_BEGIN_HEADER |
| 28 | 28 |
| 29 | 29 |
| 30 FT_LOCAL( FT_Error ) | 30 FT_LOCAL( FT_Error ) |
| 31 afm_parser_init( AFM_Parser parser, | 31 afm_parser_init( AFM_Parser parser, |
| 32 FT_Memory memory, | 32 FT_Memory memory, |
| 33 FT_Byte* base, | 33 FT_Byte* base, |
| 34 FT_Byte* limit ); | 34 FT_Byte* limit ); |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 afm_parser_next_key( AFM_Parser parser, | 79 afm_parser_next_key( AFM_Parser parser, |
| 80 FT_Bool line, | 80 FT_Bool line, |
| 81 FT_Offset* len ); | 81 FT_Offset* len ); |
| 82 | 82 |
| 83 FT_END_HEADER | 83 FT_END_HEADER |
| 84 | 84 |
| 85 #endif /* __AFMPARSE_H__ */ | 85 #endif /* __AFMPARSE_H__ */ |
| 86 | 86 |
| 87 | 87 |
| 88 /* END */ | 88 /* END */ |
| OLD | NEW |