diff options
Diffstat (limited to 'gdk-pixbuf/io-ras.c')
-rw-r--r-- | gdk-pixbuf/io-ras.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gdk-pixbuf/io-ras.c b/gdk-pixbuf/io-ras.c index cc39e6a28e..32bc35abf9 100644 --- a/gdk-pixbuf/io-ras.c +++ b/gdk-pixbuf/io-ras.c @@ -94,7 +94,8 @@ struct ras_progressive_state { }; static gpointer -gdk_pixbuf__ras_image_begin_load(ModulePreparedNotifyFunc prepared_func, +gdk_pixbuf__ras_image_begin_load(ModuleSizeFunc size_func, + ModulePreparedNotifyFunc prepared_func, ModuleUpdatedNotifyFunc updated_func, gpointer user_data, GError **error); @@ -114,7 +115,7 @@ static GdkPixbuf *gdk_pixbuf__ras_image_load(FILE * f, GError **error) GdkPixbuf *pb; - State = gdk_pixbuf__ras_image_begin_load(NULL, NULL, NULL, error); + State = gdk_pixbuf__ras_image_begin_load(NULL, NULL, NULL, NULL, error); membuf = g_malloc(4096); @@ -251,7 +252,8 @@ static gboolean RAS2State(struct rasterfile *RAS, */ static gpointer -gdk_pixbuf__ras_image_begin_load(ModulePreparedNotifyFunc prepared_func, +gdk_pixbuf__ras_image_begin_load(ModuleSizeFunc size_func, + ModulePreparedNotifyFunc prepared_func, ModuleUpdatedNotifyFunc updated_func, gpointer user_data, GError **error) |