1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef GLYPH_ASSEMBLE_H #define GLYPH_ASSEMBLE_H struct glyph_render { PicturePtr picture; xPoint glyph_pos; BoxRec dest_box; }; int glyphs_assemble(ScreenPtr pScreen, struct glyph_render **gp, BoxPtr extents, int nlist, GlyphListPtr list, GlyphPtr *glyphs); #endif