summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/GDEF.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/GDEF.h')
-rw-r--r--Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/GDEF.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/GDEF.h b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/GDEF.h
new file mode 100644
index 00000000000..aba93c7eeb6
--- /dev/null
+++ b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/GDEF.h
@@ -0,0 +1,31 @@
+#ifndef CARYLL_INCLUDE_TABLE_GEDF_H
+#define CARYLL_INCLUDE_TABLE_GEDF_H
+
+#include "otl.h"
+
+typedef struct {
+ int8_t format;
+ pos_t coordiante;
+ int16_t pointIndex;
+} otl_CaretValue;
+extern caryll_ElementInterface(otl_CaretValue) otl_iCaretValue;
+typedef caryll_Vector(otl_CaretValue) otl_CaretValueList;
+extern caryll_VectorInterface(otl_CaretValueList, otl_CaretValue) otl_iCaretValueList;
+
+typedef struct {
+ otfcc_GlyphHandle glyph;
+ OWNING otl_CaretValueList carets;
+} otl_CaretValueRecord;
+extern caryll_ElementInterface(otl_CaretValueRecord) otl_iCaretValueRecord;
+typedef caryll_Vector(otl_CaretValueRecord) otl_LigCaretTable;
+extern caryll_VectorInterface(otl_LigCaretTable, otl_CaretValueRecord) otl_iLigCaretTable;
+
+typedef struct {
+ OWNING otl_ClassDef *glyphClassDef;
+ OWNING otl_ClassDef *markAttachClassDef;
+ OWNING otl_LigCaretTable ligCarets;
+} table_GDEF;
+
+extern caryll_RefElementInterface(table_GDEF) table_iGDEF;
+
+#endif