diff options
author | Tor Lillqvist <tml@iki.fi> | 2000-10-22 16:01:20 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2000-10-22 16:01:20 +0000 |
commit | 5fd61965e443bba8a8ce85bb02683c8a32b919fc (patch) | |
tree | 93d193b981aca6e1b3426e113ae2588fb8eebf8b /gdk-pixbuf/gdk-pixbuf-io.c | |
parent | 2f9aee8d7f0d164412a459d26970ea3151f875be (diff) | |
download | gdk-pixbuf-5fd61965e443bba8a8ce85bb02683c8a32b919fc.tar.gz |
gtk/makefile.mingw.in Updates.
2000-10-22 Tor Lillqvist <tml@iki.fi>
* gtk/makefile.mingw.in
* gtk/gtk.def: Updates.
* gtk/testgtk.c: sleep() is called _sleep in MS's C
library.
* gtk/gtkimcontextsimple.c: Include <stdlib.h> for bsearch().
* gtk/makefile.msc: Remove
* gtk/makefile.msc.in: New file, like makefile.mingw.in.
* gtk/Makefile.am: Add it.
* configure.in: Generate it.
* gtk/gtktextbuffer.c (gtk_text_buffer_create_child_anchor)
* gtk/gtktextbtree.c (gtk_text_line_char_to_byte): Return
something even if not implemented, to satisfy picky MSVC.
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf-io.c')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-io.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-io.c b/gdk-pixbuf/gdk-pixbuf-io.c index 02a517e43..ad4c29924 100644 --- a/gdk-pixbuf/gdk-pixbuf-io.c +++ b/gdk-pixbuf/gdk-pixbuf-io.c @@ -360,6 +360,12 @@ gdk_pixbuf_load_module (GdkPixbufModule *image_module, #define m_stop_load(type) extern void mname(type,stop_load) (gpointer context); #define m_load_increment(type) extern gboolean mname(type,load_increment) (gpointer context, const guchar *buf, guint size); #define m_load_animation(type) extern GdkPixbufAnimation * mname(type,load_animation) (FILE *f); +#define m_save(type) \ + extern gboolean mname(type,save) (FILE *f, \ + GdkPixbuf *pixbuf, \ + gchar **keys, \ + gchar **values, \ + GError **error); /* PNG */ m_load (png); |