00001 /* 00002 * @(#)MarkToBasePositioningSubtables.h 1.5 00/03/15 00003 * 00004 * (C) Copyright IBM Corp. 1998, 1999, 2000 - All Rights Reserved 00005 * 00006 */ 00007 00008 #ifndef __MARKTOBASEPOSITIONINGSUBTABLES_H 00009 #define __MARKTOBASEPOSITIONINGSUBTABLES_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 MarkToBasePositioningSubtable : AttachmentPositioningSubtable 00019 { 00020 le_int32 process(GlyphIterator *glyphIterator, LEFontInstance *fontInstance); 00021 LEGlyphID findBaseGlyph(GlyphIterator *glyphIterator); 00022 }; 00023 00024 struct BaseRecord 00025 { 00026 Offset baseAnchorTableOffsetArray[ANY_NUMBER]; 00027 }; 00028 00029 struct BaseArray 00030 { 00031 le_int16 baseRecordCount; 00032 BaseRecord baseRecordArray[ANY_NUMBER]; 00033 }; 00034 00035 #endif 00036