diff options
author | Federico Mena Quintero <federico@redhat.com> | 1999-11-02 01:50:06 +0000 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1999-11-02 01:50:06 +0000 |
commit | 69fb59dd3bcf212b309bfa67f8c2deecf3c3f325 (patch) | |
tree | 6d59bb1b870afe11e2f68fda28a15f1c88b5fba0 /gdk-pixbuf/gdk-pixbuf-io.h | |
parent | 5dcc2ddd519205fa1435593cf05d677f1cbe4d44 (diff) | |
download | gtk+-69fb59dd3bcf212b309bfa67f8c2deecf3c3f325.tar.gz |
Start of the pixbuf canvas item. Drawing affines seem to work. Bounding
1999-11-01 Federico Mena Quintero <federico@redhat.com>
* src/gnome-canvas-pixbuf.c: Start of the pixbuf canvas item.
Drawing affines seem to work. Bounding box is fubared. ::point()
is not implemented. This is a work in progress.
* src/Makefile.am: Added gnome-canvas-pixbuf.[ch] to the list of
sources.
* configure.in: Sigh. We need to link in libgnomeui for the
canvas stuff. This mess will disappear when gdk-pixbuf gets
folded into gnome-libs.
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf-io.h')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-io.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-io.h b/gdk-pixbuf/gdk-pixbuf-io.h index 2fcd092573..0e203b54cc 100644 --- a/gdk-pixbuf/gdk-pixbuf-io.h +++ b/gdk-pixbuf/gdk-pixbuf-io.h @@ -23,10 +23,19 @@ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ + +#ifndef GDK_PIXBUF_IO_H +#define GDK_PIXBUF_IO_H + #include <gmodule.h> #include "gdk-pixbuf.h" #include <stdio.h> +#ifdef __cplusplus +extern "C" { +#pragma } +#endif + typedef void (* ModulePreparedNotifyFunc) (GdkPixbuf *pixbuf, gpointer user_data); @@ -49,3 +58,10 @@ struct _GdkPixbufModule { GdkPixbufModule *gdk_pixbuf_get_module (gchar *buffer, gint size); void gdk_pixbuf_load_module (GdkPixbufModule *image_module); + + +#ifdef __cplusplus +} +#endif + +#endif |