summaryrefslogtreecommitdiff
path: root/src/pk/pkdrivr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pk/pkdrivr.h')
-rw-r--r--src/pk/pkdrivr.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/pk/pkdrivr.h b/src/pk/pkdrivr.h
index 7c8fb3841..da2b01cdb 100644
--- a/src/pk/pkdrivr.h
+++ b/src/pk/pkdrivr.h
@@ -27,6 +27,14 @@
FT_BEGIN_HEADER
+
+ typedef struct PK_EncodingRec_
+ {
+ FT_Long enc;
+ FT_UShort glyph;
+
+ } PK_EncodingRec, *PK_Encoding;
+
typedef struct PK_BitmapRec_
{
FT_Int bbx_width, bbx_height;
@@ -34,6 +42,7 @@ FT_BEGIN_HEADER
FT_Int mv_x, mv_y;
FT_Byte *bitmap;
FT_UInt raster;
+ FT_UShort code;
} PK_BitmapRec, *PK_Bitmap;
@@ -45,6 +54,11 @@ FT_BEGIN_HEADER
FT_UInt font_bbx_w, font_bbx_h;
FT_UInt font_bbx_xoff, font_bbx_yoff;
+ FT_ULong nencodings;
+ PK_Encoding encodings;
+
+ FT_ULong nglyphs;
+
} PK_GlyphRec, *PK_Glyph;
typedef struct PK_FaceRec_