summaryrefslogtreecommitdiff
path: root/src/psaux/t1cmap.h
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2003-09-29 20:33:37 +0000
committerDavid Turner <david@freetype.org>2003-09-29 20:33:37 +0000
commitb72d8a85212e1dc2dc103c28e19a4f4a2d71767e (patch)
treea149b5916e17de9e8e46766603ad112477b6476a /src/psaux/t1cmap.h
parenta259b6dddbdf1e23346bd8d9816c5c68adb7d433 (diff)
downloadfreetype2-b72d8a85212e1dc2dc103c28e19a4f4a2d71767e.tar.gz
* include/freetype/internal/services/svpsname.h (added),
include/freetype/internal/psnames.h (removed), include/freetype/internal/internal.h (FT_SERVICE_POSTSCRIPT_NAMES): added new service to handle glyph name dictionaries, replacing the old internal header named "psnames.h" by "services/svpsname.h" note that this is different from "services/svpostnm.h" which only handles the retrieval of Postscript font name for a given face. (should we merge these two services into a single header ??) * include/freetype/internal/ftserv.h: adding FT_FACE_FIND_GLOBAL_SERVICE (used to lookup a service globally, instead of only within the current module) * include/freetype/internal/ftobjs.h, src/base/ftobjs.c: adding the new base function ft_module_get_service
Diffstat (limited to 'src/psaux/t1cmap.h')
-rw-r--r--src/psaux/t1cmap.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/psaux/t1cmap.h b/src/psaux/t1cmap.h
index 0d68c999c..0b8c4fcfd 100644
--- a/src/psaux/t1cmap.h
+++ b/src/psaux/t1cmap.h
@@ -22,7 +22,6 @@
#include <ft2build.h>
#include FT_INTERNAL_OBJECTS_H
#include FT_INTERNAL_TYPE1_TYPES_H
-#include FT_INTERNAL_POSTSCRIPT_NAMES_H
FT_BEGIN_HEADER
@@ -47,16 +46,16 @@ FT_BEGIN_HEADER
FT_UInt num_glyphs;
const char* const* glyph_names;
-
+
} T1_CMapStdRec;
FT_CALLBACK_TABLE const FT_CMap_ClassRec
t1_cmap_standard_class_rec;
-
+
FT_CALLBACK_TABLE const FT_CMap_ClassRec
t1_cmap_expert_class_rec;
-
+
/*************************************************************************/
/*************************************************************************/
@@ -67,20 +66,20 @@ FT_BEGIN_HEADER
/*************************************************************************/
typedef struct T1_CMapCustomRec_* T1_CMapCustom;
-
+
typedef struct T1_CMapCustomRec_
{
FT_CMapRec cmap;
FT_UInt first;
FT_UInt count;
FT_UShort* indices;
-
+
} T1_CMapCustomRec;
FT_CALLBACK_TABLE const FT_CMap_ClassRec
t1_cmap_custom_class_rec;
-
+
/*************************************************************************/
/*************************************************************************/
@@ -97,7 +96,7 @@ FT_BEGIN_HEADER
{
FT_UInt32 unicode;
FT_UInt gindex;
-
+
} T1_CMapUniPairRec, *T1_CMapUniPair;
@@ -115,7 +114,7 @@ FT_BEGIN_HEADER
/* */
-
+
FT_END_HEADER
#endif /* __T1CMAP_H__ */