diff options
author | Jonathan Blandford <jrb@redhat.com> | 1999-10-26 16:26:00 +0000 |
---|---|---|
committer | Jonathan Blandford <jrb@src.gnome.org> | 1999-10-26 16:26:00 +0000 |
commit | c84756cf3874dba57d696b9b27d2b3e13af8cf1b (patch) | |
tree | 308212e3aef2c26fe9d3133eb2cdf76c9e30cb9c /gdk-pixbuf/io-png.c | |
parent | cfc286601977ea2198193c7663315a936c6a9f42 (diff) | |
download | gtk+-c84756cf3874dba57d696b9b27d2b3e13af8cf1b.tar.gz |
New Class. Beginning of progrssive loading.
1999-10-26 Jonathan Blandford <jrb@redhat.com>
* src/gdk-pixbuf-loader.h: New Class. Beginning of progrssive
loading.
Diffstat (limited to 'gdk-pixbuf/io-png.c')
-rw-r--r-- | gdk-pixbuf/io-png.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdk-pixbuf/io-png.c b/gdk-pixbuf/io-png.c index 5b07a4feed..b9caaf7db8 100644 --- a/gdk-pixbuf/io-png.c +++ b/gdk-pixbuf/io-png.c @@ -134,3 +134,9 @@ image_load (FILE *f) w, h, w * 3, free_buffer, NULL); } + +GdkImage * +image_load_by_data (void *data, size_t count) +{ + return NULL; +} |