de95737116
X-SVN-Rev: 12253
46 lines
784 B
C
46 lines
784 B
C
/*
|
|
* @(#)Features.h 1.4 00/03/15
|
|
*
|
|
* (C) Copyright IBM Corp. 1998-2003 - All Rights Reserved
|
|
*
|
|
*/
|
|
|
|
#ifndef __FEATURES_H
|
|
#define __FEATURES_H
|
|
|
|
/**
|
|
* \file
|
|
* \internal
|
|
*/
|
|
|
|
#include "LETypes.h"
|
|
#include "OpenTypeTables.h"
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
struct FeatureRecord
|
|
{
|
|
ATag featureTag;
|
|
Offset featureTableOffset;
|
|
};
|
|
|
|
struct FeatureTable
|
|
{
|
|
Offset featureParamsOffset;
|
|
le_uint16 lookupCount;
|
|
le_uint16 lookupListIndexArray[ANY_NUMBER];
|
|
};
|
|
|
|
struct FeatureListTable
|
|
{
|
|
le_uint16 featureCount;
|
|
FeatureRecord featureRecordArray[ANY_NUMBER];
|
|
|
|
const FeatureTable *getFeatureTable(le_uint16 featureIndex, LETag *featureTag) const;
|
|
|
|
const FeatureTable *getFeatureTable(LETag featureTag) const;
|
|
};
|
|
|
|
U_NAMESPACE_END
|
|
#endif
|