summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/hmtx.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/hmtx.h')
-rw-r--r--Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/hmtx.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/hmtx.h b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/hmtx.h
new file mode 100644
index 00000000000..c9f3cc45a67
--- /dev/null
+++ b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/hmtx.h
@@ -0,0 +1,21 @@
+#ifndef CARYLL_INCLUDE_TABLE_HMTX_H
+#define CARYLL_INCLUDE_TABLE_HMTX_H
+
+#include "table-common.h"
+
+#include "hhea.h"
+#include "maxp.h"
+
+typedef struct {
+ length_t advanceWidth;
+ pos_t lsb;
+} horizontal_metric;
+
+typedef struct {
+ // Horizontal metrics
+ OWNING horizontal_metric *metrics;
+ OWNING pos_t *leftSideBearing;
+} table_hmtx;
+extern caryll_RefElementInterface(table_hmtx) table_iHmtx;
+
+#endif