summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/name.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/name.h')
-rw-r--r--Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/name.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/name.h b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/name.h
new file mode 100644
index 00000000000..8721a1d1245
--- /dev/null
+++ b/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/name.h
@@ -0,0 +1,17 @@
+#ifndef CARYLL_INCLUDE_TABLE_NAME_H
+#define CARYLL_INCLUDE_TABLE_NAME_H
+
+#include "table-common.h"
+
+typedef struct {
+ uint16_t platformID;
+ uint16_t encodingID;
+ uint16_t languageID;
+ uint16_t nameID;
+ sds nameString;
+} otfcc_NameRecord;
+extern caryll_ElementInterface(otfcc_NameRecord) otfcc_iNameRecord;
+typedef caryll_Vector(otfcc_NameRecord) table_name;
+extern caryll_VectorInterface(table_name, otfcc_NameRecord) table_iName;
+
+#endif