mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
34 lines
564 B
C
34 lines
564 B
C
/*
|
|
*
|
|
* (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
|
|
|