scuffed-code/icu4c/source/layout/SinglePositioningSubtables.h
Eric Mader de674fe66c ICU-120 changes for ICULayoutEngine
X-SVN-Rev: 3312
2000-12-21 01:18:44 +00:00

43 lines
1.0 KiB
C

/*
* @(#)SinglePositioningSubtables.h 1.6 00/03/15
*
* (C) Copyright IBM Corp. 1998, 1999, 2000 - All Rights Reserved
*
*/
#ifndef __SINGLEPOSITIONINGSUBTABLES_H
#define __SINGLEPOSITIONINGSUBTABLES_H
#include "LETypes.h"
#include "LEFontInstance.h"
#include "OpenTypeTables.h"
#include "GlyphPositioningTables.h"
#include "ValueRecords.h"
#include "GlyphIterator.h"
struct SinglePositioningSubtable : GlyphPositioningSubtable
{
le_uint32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance);
};
struct SinglePositioningFormat1Subtable : SinglePositioningSubtable
{
ValueFormat valueFormat;
ValueRecord valueRecord;
le_uint32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance);
};
struct SinglePositioningFormat2Subtable : SinglePositioningSubtable
{
ValueFormat valueFormat;
le_uint16 valueCount;
ValueRecord valueRecordArray[ANY_NUMBER];
le_uint32 process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance);
};
#endif