| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* psaux.h */ | 3 /* psaux.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* Auxiliary functions and data structures related to PostScript fonts */ | 5 /* Auxiliary functions and data structures related to PostScript fonts */ |
| 6 /* (specification). */ | 6 /* (specification). */ |
| 7 /* */ | 7 /* */ |
| 8 /* Copyright 1996-2004, 2006, 2008, 2009, 2012 by */ | 8 /* Copyright 1996-2004, 2006, 2008, 2009, 2012 by */ |
| 9 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ | 9 /* David Turner, Robert Wilhelm, and Werner Lemberg. */ |
| 10 /* */ | 10 /* */ |
| 11 /* This file is part of the FreeType project, and may only be used, */ | 11 /* This file is part of the FreeType project, and may only be used, */ |
| 12 /* modified, and distributed under the terms of the FreeType project */ | 12 /* modified, and distributed under the terms of the FreeType project */ |
| 13 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ | 13 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ |
| 14 /* this file you indicate that you have read the license and */ | 14 /* this file you indicate that you have read the license and */ |
| 15 /* understand and accept it fully. */ | 15 /* understand and accept it fully. */ |
| 16 /* */ | 16 /* */ |
| 17 /***************************************************************************/ | 17 /***************************************************************************/ |
| 18 | 18 |
| 19 | 19 |
| 20 #ifndef __PSAUX_H__ | 20 #ifndef __PSAUX_H__ |
| 21 #define __PSAUX_H__ | 21 #define __PSAUX_H__ |
| 22 | 22 |
| 23 | 23 |
| 24 #include "../../ft2build.h" | 24 #include <ft2build.h> |
| 25 #include "ftobjs.h" | 25 #include FT_INTERNAL_OBJECTS_H |
| 26 #include "t1types.h" | 26 #include FT_INTERNAL_TYPE1_TYPES_H |
| 27 #include "services/svpscmap.h" | 27 #include FT_SERVICE_POSTSCRIPT_CMAPS_H |
| 28 | 28 |
| 29 | 29 |
| 30 FT_BEGIN_HEADER | 30 FT_BEGIN_HEADER |
| 31 | 31 |
| 32 | 32 |
| 33 /*************************************************************************/ | 33 /*************************************************************************/ |
| 34 /*************************************************************************/ | 34 /*************************************************************************/ |
| 35 /***** *****/ | 35 /***** *****/ |
| 36 /***** T1_TABLE *****/ | 36 /***** T1_TABLE *****/ |
| 37 /***** *****/ | 37 /***** *****/ |
| (...skipping 830 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 868 IS_PS_DELIM( (cur)[sizeof ( (token) ) - 1] ) ) ) && \ | 868 IS_PS_DELIM( (cur)[sizeof ( (token) ) - 1] ) ) ) && \ |
| 869 ft_strncmp( (char*)(cur), (token), sizeof ( (token) ) - 1 ) == 0 ) | 869 ft_strncmp( (char*)(cur), (token), sizeof ( (token) ) - 1 ) == 0 ) |
| 870 | 870 |
| 871 | 871 |
| 872 FT_END_HEADER | 872 FT_END_HEADER |
| 873 | 873 |
| 874 #endif /* __PSAUX_H__ */ | 874 #endif /* __PSAUX_H__ */ |
| 875 | 875 |
| 876 | 876 |
| 877 /* END */ | 877 /* END */ |
| OLD | NEW |