summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/hdmx.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/hdmx.h')
-rw-r--r--Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/hdmx.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/hdmx.h b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/hdmx.h
new file mode 100644
index 00000000000..4349b6e8d6a
--- /dev/null
+++ b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/hdmx.h
@@ -0,0 +1,23 @@
+#ifndef CARYLL_INCLUDE_TABLE_HDMX_H
+#define CARYLL_INCLUDE_TABLE_HDMX_H
+
+#include "table-common.h"
+#include "maxp.h"
+
+typedef struct {
+ uint8_t pixelSize;
+ uint8_t maxWidth;
+ uint8_t *widths;
+} device_record;
+
+typedef struct {
+ // Horizontal device metrics
+ uint16_t version;
+ uint16_t numRecords;
+ uint32_t sizeDeviceRecord;
+ OWNING device_record *records;
+} table_hdmx;
+
+extern caryll_RefElementInterface(table_hdmx) table_iHdmx;
+
+#endif