diff options
Diffstat (limited to 'Build/source/libs/icu/icu-xetex/layout/GlyphLookupTables.h')
-rw-r--r-- | Build/source/libs/icu/icu-xetex/layout/GlyphLookupTables.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Build/source/libs/icu/icu-xetex/layout/GlyphLookupTables.h b/Build/source/libs/icu/icu-xetex/layout/GlyphLookupTables.h new file mode 100644 index 00000000000..65642d02e28 --- /dev/null +++ b/Build/source/libs/icu/icu-xetex/layout/GlyphLookupTables.h @@ -0,0 +1,34 @@ +/* + * + * (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved + * + */ + +#ifndef __GLYPHLOOKUPTABLES_H +#define __GLYPHLOOKUPTABLES_H + +/** + * \file + * \internal + */ + +#include "LETypes.h" +#include "OpenTypeTables.h" + +U_NAMESPACE_BEGIN + +struct GlyphLookupTableHeader +{ + fixed32 version; + Offset scriptListOffset; + Offset featureListOffset; + Offset lookupListOffset; + + le_bool coversScript(LETag scriptTag) const; + le_bool coversScriptAndLanguage(LETag scriptTag, LETag languageTag, le_bool exactMatch = FALSE) const; +}; + +U_NAMESPACE_END + +#endif + |