]> git.saurik.com Git - apple/icu.git/blame - icuSources/layout/MarkToMarkPosnSubtables.h
ICU-3.13.tar.gz
[apple/icu.git] / icuSources / layout / MarkToMarkPosnSubtables.h
CommitLineData
b75a7d8f
A
1/*
2 * @(#)MarkToMarkPosnSubtables.h 1.5 00/03/15
3 *
4 * (C) Copyright IBM Corp. 1998-2003 - All Rights Reserved
5 *
6 */
7
8#ifndef __MARKTOMARKPOSITIONINGSUBTABLES_H
9#define __MARKTOMARKPOSITIONINGSUBTABLES_H
10
11/**
12 * \file
13 * \internal
14 */
15
16#include "LETypes.h"
17#include "LEFontInstance.h"
18#include "OpenTypeTables.h"
19#include "GlyphPositioningTables.h"
20#include "AttachmentPosnSubtables.h"
21#include "GlyphIterator.h"
22
23U_NAMESPACE_BEGIN
24
25struct MarkToMarkPositioningSubtable : AttachmentPositioningSubtable
26{
27 le_int32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const;
28 LEGlyphID findMark2Glyph(GlyphIterator *glyphIterator) const;
29};
30
31struct Mark2Record
32{
33 Offset mark2AnchorTableOffsetArray[ANY_NUMBER];
34};
35
36struct Mark2Array
37{
38 le_uint16 mark2RecordCount;
39 Mark2Record mark2RecordArray[ANY_NUMBER];
40};
41
42U_NAMESPACE_END
43#endif
44