diff options
author | Christopher Blizzard <blizzard@redhat.com> | 2004-06-17 20:26:42 +0000 |
---|---|---|
committer | Christopher Blizzard <blizzard@src.gnome.org> | 2004-06-17 20:26:42 +0000 |
commit | 329566a3e3af0cfebdb561978e6622ebe8208108 (patch) | |
tree | 2a001b6660c5fb553bef42d4a297b5ba70babb71 /pango/pangofc-decoder.h | |
parent | 5ca931f88a431fa7158a8e406d3bf92a1bdafd07 (diff) | |
download | pango-329566a3e3af0cfebdb561978e6622ebe8208108.tar.gz |
Changes to support extra arguments.
2004-06-17 Christopher Blizzard <blizzard@redhat.com>
* pango/pangofc-decoder.c (pango_fc_decoder_get_glyph,
pango_fc_decoder_get_charset): Changes to support extra arguments.
* pango/pangofc-decoder.h (struct _PangoFcDecoderClass): Add the
PangoFcDecoder * as the first argument to the callbacks for
get_glyph and get_charset.
Diffstat (limited to 'pango/pangofc-decoder.h')
-rw-r--r-- | pango/pangofc-decoder.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pango/pangofc-decoder.h b/pango/pangofc-decoder.h index 34b5f180..0178ab1b 100644 --- a/pango/pangofc-decoder.h +++ b/pango/pangofc-decoder.h @@ -84,8 +84,10 @@ struct _PangoFcDecoderClass /* vtable - not signals */ /*< public >*/ - FcCharSet *(*get_charset) (PangoFcFont *fcfont); - PangoGlyph (*get_glyph) (PangoFcFont *fcfont, + FcCharSet *(*get_charset) (PangoFcDecoder *decoder, + PangoFcFont *fcfont); + PangoGlyph (*get_glyph) (PangoFcDecoder *decoder, + PangoFcFont *fcfont, guint32 wc); /*< private >*/ |