summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/post.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/post.h')
-rw-r--r--Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/post.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/post.h b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/post.h
new file mode 100644
index 00000000000..da94d59bcd3
--- /dev/null
+++ b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/post.h
@@ -0,0 +1,22 @@
+#ifndef CARYLL_INCLUDE_TABLE_POST_H
+#define CARYLL_INCLUDE_TABLE_POST_H
+
+#include "table-common.h"
+
+typedef struct {
+ // PostScript information
+ f16dot16 version;
+ f16dot16 italicAngle;
+ int16_t underlinePosition;
+ int16_t underlineThickness;
+ uint32_t isFixedPitch;
+ uint32_t minMemType42;
+ uint32_t maxMemType42;
+ uint32_t minMemType1;
+ uint32_t maxMemType1;
+ OWNING otfcc_GlyphOrder *post_name_map;
+} table_post;
+
+extern caryll_RefElementInterface(table_post) iTable_post;
+
+#endif