diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-07-06 23:10:46 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-07-06 23:10:46 +0000 |
commit | e4ab3810185b6eda9651f0f03d017893b906b868 (patch) | |
tree | f39efe2ad114a15e3e44ba74bc83c396b4207f66 /gdk-pixbuf/io-pnm.c | |
parent | 09487ff9f537152473cfed4ee3afe450606e60b4 (diff) | |
download | gtk+-e4ab3810185b6eda9651f0f03d017893b906b868.tar.gz |
Load-at-size functionality for gdk-pixbuf.
Diffstat (limited to 'gdk-pixbuf/io-pnm.c')
-rw-r--r-- | gdk-pixbuf/io-pnm.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdk-pixbuf/io-pnm.c b/gdk-pixbuf/io-pnm.c index 797f937178..c137191464 100644 --- a/gdk-pixbuf/io-pnm.c +++ b/gdk-pixbuf/io-pnm.c @@ -81,7 +81,8 @@ typedef struct { } PnmLoaderContext; static GdkPixbuf *gdk_pixbuf__pnm_image_load (FILE *f, GError **error); -static gpointer gdk_pixbuf__pnm_image_begin_load (ModulePreparedNotifyFunc func, +static gpointer gdk_pixbuf__pnm_image_begin_load (ModuleSizeFunc size_func, + ModulePreparedNotifyFunc func, ModuleUpdatedNotifyFunc func2, gpointer user_data, GError **error); @@ -803,7 +804,8 @@ gdk_pixbuf__pnm_image_load (FILE *f, GError **error) */ static gpointer -gdk_pixbuf__pnm_image_begin_load (ModulePreparedNotifyFunc prepared_func, +gdk_pixbuf__pnm_image_begin_load (ModuleSizeFunc size_func, + ModulePreparedNotifyFunc prepared_func, ModuleUpdatedNotifyFunc updated_func, gpointer user_data, GError **error) |