00001 /* 00002 * @(#)MarkToMarkPositioningSubtables.h 1.5 00/03/15 00003 * 00004 * (C) Copyright IBM Corp. 1998, 1999, 2000 - All Rights Reserved 00005 * 00006 */ 00007 00008 #ifndef __MARKTOMARKPOSITIONINGSUBTABLES_H 00009 #define __MARKTOMARKPOSITIONINGSUBTABLES_H 00010 00011 #include "LETypes.h" 00012 #include "LEFontInstance.h" 00013 #include "OpenTypeTables.h" 00014 #include "GlyphPositioningTables.h" 00015 #include "AttachmentPositioningSubtables.h" 00016 #include "GlyphIterator.h" 00017 00018 struct MarkToMarkPositioningSubtable : AttachmentPositioningSubtable 00019 { 00020 le_int32 process(GlyphIterator *glyphIterator, LEFontInstance *fontInstance); 00021 LEGlyphID findMark2Glyph(GlyphIterator *glyphIterator); 00022 }; 00023 00024 struct Mark2Record 00025 { 00026 Offset mark2AnchorTableOffsetArray[ANY_NUMBER]; 00027 }; 00028 00029 struct Mark2Array 00030 { 00031 le_uint16 mark2RecordCount; 00032 Mark2Record mark2RecordArray[ANY_NUMBER]; 00033 }; 00034 00035 #endif 00036