diff options
Diffstat (limited to 'pango/pango-engine.h')
-rw-r--r-- | pango/pango-engine.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pango/pango-engine.h b/pango/pango-engine.h index ccd7b219..9d56163a 100644 --- a/pango/pango-engine.h +++ b/pango/pango-engine.h @@ -67,7 +67,7 @@ struct _PangoEngine struct _PangoEngineLang { PangoEngine engine; - void (*script_break) (gchar *text, + void (*script_break) (const char *text, int len, PangoAnalysis *analysis, PangoLogAttr *attrs); @@ -77,10 +77,12 @@ struct _PangoEngineShape { PangoEngine engine; void (*script_shape) (PangoFont *font, - char *text, + const char *text, int length, PangoAnalysis *analysis, PangoGlyphString *glyphs); + PangoCoverage *(*get_coverage) (PangoFont *font, + const char *lang); }; /* A module should export the following functions */ |