]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /* |
2 | * @(#)SubstitutionLookups.h 1.5 00/03/15 | |
3 | * | |
4 | * (C) Copyright IBM Corp. 1998-2003 - All Rights Reserved | |
5 | * | |
6 | */ | |
7 | ||
8 | #ifndef __SUBSTITUTIONLOOKUPS_H | |
9 | #define __SUBSTITUTIONLOOKUPS_H | |
10 | ||
11 | /** | |
12 | * \file | |
13 | * \internal | |
14 | */ | |
15 | ||
16 | #include "LETypes.h" | |
17 | #include "LEFontInstance.h" | |
18 | #include "OpenTypeTables.h" | |
19 | #include "GlyphSubstitutionTables.h" | |
20 | #include "GlyphIterator.h" | |
21 | #include "LookupProcessor.h" | |
22 | ||
23 | U_NAMESPACE_BEGIN | |
24 | ||
25 | struct SubstitutionLookupRecord | |
26 | { | |
27 | le_uint16 sequenceIndex; | |
28 | le_uint16 lookupListIndex; | |
29 | }; | |
30 | ||
31 | struct SubstitutionLookup | |
32 | { | |
33 | static void applySubstitutionLookups( | |
34 | LookupProcessor *lookupProcessor, | |
35 | SubstitutionLookupRecord *substLookupRecordArray, | |
36 | le_uint16 substCount, | |
37 | GlyphIterator *glyphIterator, | |
38 | const LEFontInstance *fontInstance, | |
39 | le_int32 position); | |
40 | }; | |
41 | ||
42 | U_NAMESPACE_END | |
43 | #endif | |
44 |