summaryrefslogtreecommitdiff
path: root/Build/source/texk/ttfdump/include/ttc.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/ttfdump/include/ttc.h')
-rw-r--r--Build/source/texk/ttfdump/include/ttc.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/Build/source/texk/ttfdump/include/ttc.h b/Build/source/texk/ttfdump/include/ttc.h
new file mode 100644
index 00000000000..7350114cec5
--- /dev/null
+++ b/Build/source/texk/ttfdump/include/ttc.h
@@ -0,0 +1,25 @@
+#ifndef __TTF_TTC_H
+#define __TTF_TTC_H
+
+/* $Id: ttc.h,v 1.3 1998/07/06 06:07:01 werner Exp $ */
+
+#include "ttf.h"
+
+typedef struct
+{
+ ULONG TTCTag;
+ Fixed version;
+ ULONG DirCount;
+ ULONG *offset; /* length = DirCount */
+ TTFontPtr font;
+}
+TTCHeader, *TTCHeaderPtr;
+
+TTCHeaderPtr ttfLoadTTCHeader(char *filename);
+void ttfLoadTTCFont(TTCHeaderPtr ttc, FILE *fp);
+void ttfFreeTTCFont(TTCHeaderPtr ttc);
+
+#endif /* __TTF_TTC_H */
+
+
+/* end of ttc.h */