summaryrefslogtreecommitdiff
path: root/Build/source/libs/icu/icu-xetex/layout/MarkToBasePosnSubtables.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/icu/icu-xetex/layout/MarkToBasePosnSubtables.h')
-rw-r--r--Build/source/libs/icu/icu-xetex/layout/MarkToBasePosnSubtables.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/Build/source/libs/icu/icu-xetex/layout/MarkToBasePosnSubtables.h b/Build/source/libs/icu/icu-xetex/layout/MarkToBasePosnSubtables.h
new file mode 100644
index 00000000000..aa7a0a1262c
--- /dev/null
+++ b/Build/source/libs/icu/icu-xetex/layout/MarkToBasePosnSubtables.h
@@ -0,0 +1,43 @@
+/*
+ *
+ * (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
+ *
+ */
+
+#ifndef __MARKTOBASEPOSITIONINGSUBTABLES_H
+#define __MARKTOBASEPOSITIONINGSUBTABLES_H
+
+/**
+ * \file
+ * \internal
+ */
+
+#include "LETypes.h"
+#include "LEFontInstance.h"
+#include "OpenTypeTables.h"
+#include "GlyphPositioningTables.h"
+#include "AttachmentPosnSubtables.h"
+#include "GlyphIterator.h"
+
+U_NAMESPACE_BEGIN
+
+struct MarkToBasePositioningSubtable : AttachmentPositioningSubtable
+{
+ le_int32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
+ LEGlyphID findBaseGlyph(GlyphIterator *glyphIterator) const;
+};
+
+struct BaseRecord
+{
+ Offset baseAnchorTableOffsetArray[ANY_NUMBER];
+};
+
+struct BaseArray
+{
+ le_int16 baseRecordCount;
+ BaseRecord baseRecordArray[ANY_NUMBER];
+};
+
+U_NAMESPACE_END
+#endif
+