]>
Commit | Line | Data |
---|---|---|
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 | ||
23 | U_NAMESPACE_BEGIN | |
24 | ||
25 | struct MarkToMarkPositioningSubtable : AttachmentPositioningSubtable | |
26 | { | |
27 | le_int32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const; | |
28 | LEGlyphID findMark2Glyph(GlyphIterator *glyphIterator) const; | |
29 | }; | |
30 | ||
31 | struct Mark2Record | |
32 | { | |
33 | Offset mark2AnchorTableOffsetArray[ANY_NUMBER]; | |
34 | }; | |
35 | ||
36 | struct Mark2Array | |
37 | { | |
38 | le_uint16 mark2RecordCount; | |
39 | Mark2Record mark2RecordArray[ANY_NUMBER]; | |
40 | }; | |
41 | ||
42 | U_NAMESPACE_END | |
43 | #endif | |
44 |