37 lines
775 B
C
37 lines
775 B
C
|
/*
|
||
|
* @(#)SubstitutionLookups.h 1.5 00/03/15
|
||
|
*
|
||
|
* (C) Copyright IBM Corp. 1998, 1999, 2000 - All Rights Reserved
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __SUBSTITUTIONLOOKUPS_H
|
||
|
#define __SUBSTITUTIONLOOKUPS_H
|
||
|
|
||
|
#include "LETypes.h"
|
||
|
#include "LEFontInstance.h"
|
||
|
#include "OpenTypeTables.h"
|
||
|
#include "GlyphSubstitutionTables.h"
|
||
|
#include "GlyphIterator.h"
|
||
|
#include "LookupProcessor.h"
|
||
|
|
||
|
struct SubstitutionLookupRecord
|
||
|
{
|
||
|
le_uint16 sequenceIndex;
|
||
|
le_uint16 lookupListIndex;
|
||
|
};
|
||
|
|
||
|
struct SubstitutionLookup
|
||
|
{
|
||
|
static void applySubstitutionLookups(
|
||
|
LookupProcessor *lookupProcessor,
|
||
|
SubstitutionLookupRecord *substLookupRecordArray,
|
||
|
le_uint16 substCount,
|
||
|
GlyphIterator *glyphIterator,
|
||
|
LEFontInstance *fontInstance,
|
||
|
le_int32 position);
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|