summaryrefslogtreecommitdiff
path: root/gdk-pixbuf
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2000-10-22 16:01:20 +0000
committerTor Lillqvist <tml@src.gnome.org>2000-10-22 16:01:20 +0000
commit5fd61965e443bba8a8ce85bb02683c8a32b919fc (patch)
tree93d193b981aca6e1b3426e113ae2588fb8eebf8b /gdk-pixbuf
parent2f9aee8d7f0d164412a459d26970ea3151f875be (diff)
downloadgtk+-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')
-rw-r--r--gdk-pixbuf/ChangeLog4
-rw-r--r--gdk-pixbuf/gdk-pixbuf-io.c6
2 files changed, 10 insertions, 0 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog
index 172bd53061..d6165192f7 100644
--- a/gdk-pixbuf/ChangeLog
+++ b/gdk-pixbuf/ChangeLog
@@ -1,3 +1,7 @@
+2000-10-16 Tor Lillqvist <tml@iki.fi>
+
+ * gdk-pixbuf-io.c: Define also m_save (for the non-gmodule case).
+
2000-10-16 Havoc Pennington <hp@redhat.com>
* gdk-pixbuf-io.c (gdk_pixbuf_get_module)
diff --git a/gdk-pixbuf/gdk-pixbuf-io.c b/gdk-pixbuf/gdk-pixbuf-io.c
index 02a517e436..ad4c29924f 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);