2004-02-14 01:09:08 +00:00
|
|
|
/*
|
|
|
|
*
|
2013-04-18 21:24:51 +00:00
|
|
|
* (C) Copyright IBM Corp. 1998-2013 - All Rights Reserved
|
2004-02-14 01:09:08 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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;
|
|
|
|
|
2013-04-18 21:24:51 +00:00
|
|
|
le_bool coversScript(const LETableReference &base, LETag scriptTag, LEErrorCode &success) const;
|
|
|
|
le_bool coversScriptAndLanguage(const LETableReference &base, LETag scriptTag, LETag languageTag, LEErrorCode &success, le_bool exactMatch = FALSE) const;
|
2004-02-14 01:09:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
U_NAMESPACE_END
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|