summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/head.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/head.h')
-rw-r--r--Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/head.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/head.h b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/head.h
new file mode 100644
index 00000000000..04faac3003d
--- /dev/null
+++ b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/head.h
@@ -0,0 +1,29 @@
+#ifndef CARYLL_INCLUDE_TABLE_HEAD_H
+#define CARYLL_INCLUDE_TABLE_HEAD_H
+
+#include "table-common.h"
+
+typedef struct {
+ // Font header
+ f16dot16 version;
+ uint32_t fontRevision;
+ uint32_t checkSumAdjustment;
+ uint32_t magicNumber;
+ uint16_t flags;
+ uint16_t unitsPerEm;
+ int64_t created;
+ int64_t modified;
+ int16_t xMin;
+ int16_t yMin;
+ int16_t xMax;
+ int16_t yMax;
+ uint16_t macStyle;
+ uint16_t lowestRecPPEM;
+ int16_t fontDirectoryHint;
+ int16_t indexToLocFormat;
+ int16_t glyphDataFormat;
+} table_head;
+
+extern caryll_RefElementInterface(table_head) table_iHead;
+
+#endif