summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/BASE.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/BASE.h')
-rw-r--r--Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/BASE.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/BASE.h b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/BASE.h
new file mode 100644
index 00000000000..7d780f951ee
--- /dev/null
+++ b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/BASE.h
@@ -0,0 +1,30 @@
+#ifndef CARYLL_INCLUDE_TABLE_BASE_H
+#define CARYLL_INCLUDE_TABLE_BASE_H
+
+#include "otl.h"
+
+typedef struct {
+ uint32_t tag;
+ pos_t coordinate;
+} otl_BaseValue;
+
+typedef struct {
+ uint32_t tag;
+ uint32_t defaultBaselineTag;
+ tableid_t baseValuesCount;
+ OWNING otl_BaseValue *baseValues;
+} otl_BaseScriptEntry;
+
+typedef struct {
+ tableid_t scriptCount;
+ otl_BaseScriptEntry *entries;
+} otl_BaseAxis;
+
+typedef struct {
+ otl_BaseAxis *horizontal;
+ otl_BaseAxis *vertical;
+} table_BASE;
+
+extern caryll_RefElementInterface(table_BASE) table_iBASE;
+
+#endif