diff options
Diffstat (limited to 'Build/source/libs/icu/icu-4.8.1/layout/MarkArrays.h')
-rw-r--r-- | Build/source/libs/icu/icu-4.8.1/layout/MarkArrays.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/Build/source/libs/icu/icu-4.8.1/layout/MarkArrays.h b/Build/source/libs/icu/icu-4.8.1/layout/MarkArrays.h new file mode 100644 index 00000000000..66dca2ae688 --- /dev/null +++ b/Build/source/libs/icu/icu-4.8.1/layout/MarkArrays.h @@ -0,0 +1,39 @@ +/* + * + * (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved + * + */ + +#ifndef __MARKARRAYS_H +#define __MARKARRAYS_H + +/** + * \file + * \internal + */ + +#include "LETypes.h" +#include "LEFontInstance.h" +#include "OpenTypeTables.h" + +U_NAMESPACE_BEGIN + +struct MarkRecord +{ + le_uint16 markClass; + Offset markAnchorTableOffset; +}; + +struct MarkArray +{ + le_uint16 markCount; + MarkRecord markRecordArray[ANY_NUMBER]; + + le_int32 getMarkClass(LEGlyphID glyphID, le_int32 coverageIndex, const LEFontInstance *fontInstance, + LEPoint &anchor) const; +}; + +U_NAMESPACE_END +#endif + + |