diff options
author | Federico Mena Quintero <federico@src.gnome.org> | 2000-02-22 00:29:00 +0000 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-02-22 00:29:00 +0000 |
commit | 79d63460579c8e867b8709154649c77fc388aded (patch) | |
tree | 5d4188dd450b238d0f7f796dd274f0bf6b084406 /gdk-pixbuf/io-png.c | |
parent | 7ef740e03d628d46772f5ea7e05d4b7797a1986d (diff) | |
download | gtk+-79d63460579c8e867b8709154649c77fc388aded.tar.gz |
0.6.0 - FedericoGDK_PIXBUF_0_6_0
Diffstat (limited to 'gdk-pixbuf/io-png.c')
-rw-r--r-- | gdk-pixbuf/io-png.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gdk-pixbuf/io-png.c b/gdk-pixbuf/io-png.c index 84a2a0acb6..3ad9bb3fd2 100644 --- a/gdk-pixbuf/io-png.c +++ b/gdk-pixbuf/io-png.c @@ -148,7 +148,7 @@ free_buffer (gpointer user_data, gpointer data) /* Shared library entry point */ GdkPixbuf * -image_load (FILE *f) +gdk_pixbuf__png_image_load (FILE *f) { png_structp png_ptr; png_infop info_ptr, end_info; @@ -274,11 +274,11 @@ struct _LoadContext { }; gpointer -image_begin_load (ModulePreparedNotifyFunc prepare_func, - ModuleUpdatedNotifyFunc update_func, - ModuleFrameDoneNotifyFunc frame_done_func, - ModuleAnimationDoneNotifyFunc anim_done_func, - gpointer user_data) +gdk_pixbuf__png_image_begin_load (ModulePreparedNotifyFunc prepare_func, + ModuleUpdatedNotifyFunc update_func, + ModuleFrameDoneNotifyFunc frame_done_func, + ModuleAnimationDoneNotifyFunc anim_done_func, + gpointer user_data) { LoadContext* lc; @@ -329,7 +329,7 @@ image_begin_load (ModulePreparedNotifyFunc prepare_func, } void -image_stop_load (gpointer context) +gdk_pixbuf__png_image_stop_load (gpointer context) { LoadContext* lc = context; @@ -342,7 +342,7 @@ image_stop_load (gpointer context) } gboolean -image_load_increment(gpointer context, guchar *buf, guint size) +gdk_pixbuf__png_image_load_increment(gpointer context, guchar *buf, guint size) { LoadContext* lc = context; |