| OLD | NEW |
| 1 /***************************************************************************/ | 1 /***************************************************************************/ |
| 2 /* */ | 2 /* */ |
| 3 /* svcid.h */ | 3 /* svcid.h */ |
| 4 /* */ | 4 /* */ |
| 5 /* The FreeType CID font services (specification). */ | 5 /* The FreeType CID font services (specification). */ |
| 6 /* */ | 6 /* */ |
| 7 /* Copyright 2007, 2009, 2012 by Derek Clegg, Michael Toftdal. */ | 7 /* Copyright 2007, 2009, 2012 by Derek Clegg, Michael Toftdal. */ |
| 8 /* */ | 8 /* */ |
| 9 /* This file is part of the FreeType project, and may only be used, */ | 9 /* This file is part of the FreeType project, and may only be used, */ |
| 10 /* modified, and distributed under the terms of the FreeType project */ | 10 /* modified, and distributed under the terms of the FreeType project */ |
| 11 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ | 11 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ |
| 12 /* this file you indicate that you have read the license and */ | 12 /* this file you indicate that you have read the license and */ |
| 13 /* understand and accept it fully. */ | 13 /* understand and accept it fully. */ |
| 14 /* */ | 14 /* */ |
| 15 /***************************************************************************/ | 15 /***************************************************************************/ |
| 16 | 16 |
| 17 | 17 |
| 18 #ifndef __SVCID_H__ | 18 #ifndef __SVCID_H__ |
| 19 #define __SVCID_H__ | 19 #define __SVCID_H__ |
| 20 | 20 |
| 21 #include "../ftserv.h" | 21 #include FT_INTERNAL_SERVICE_H |
| 22 | 22 |
| 23 | 23 |
| 24 FT_BEGIN_HEADER | 24 FT_BEGIN_HEADER |
| 25 | 25 |
| 26 | 26 |
| 27 #define FT_SERVICE_ID_CID "CID" | 27 #define FT_SERVICE_ID_CID "CID" |
| 28 | 28 |
| 29 typedef FT_Error | 29 typedef FT_Error |
| 30 (*FT_CID_GetRegistryOrderingSupplementFunc)( FT_Face face, | 30 (*FT_CID_GetRegistryOrderingSupplementFunc)( FT_Face face, |
| 31 const char* *registry, | 31 const char* *registry, |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 /* */ | 80 /* */ |
| 81 | 81 |
| 82 | 82 |
| 83 FT_END_HEADER | 83 FT_END_HEADER |
| 84 | 84 |
| 85 | 85 |
| 86 #endif /* __SVCID_H__ */ | 86 #endif /* __SVCID_H__ */ |
| 87 | 87 |
| 88 | 88 |
| 89 /* END */ | 89 /* END */ |
| OLD | NEW |