diff options
author | Elliot Lee <sopwith@src.gnome.org> | 2000-01-10 19:17:42 +0000 |
---|---|---|
committer | Elliot Lee <sopwith@src.gnome.org> | 2000-01-10 19:17:42 +0000 |
commit | 0bce8ff54be3df22d80a9fb1235824587fbd97f5 (patch) | |
tree | fb38fee90d72b393782ab59a65a67c22c665a057 /gdk-pixbuf/gdk-pixbuf.c | |
parent | 82abdad4db4560e0c010749a4972807a7bd0c61d (diff) | |
download | gtk+-0bce8ff54be3df22d80a9fb1235824587fbd97f5.tar.gz |
No more libart/gdk-pixbuf as part of gnome-libs
* No more libart/gdk-pixbuf as part of gnome-libs
* Everything: Install header files & *Conf.sh in new per-interface-version locations.
Include interface version in library names.
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf.c')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf.c b/gdk-pixbuf/gdk-pixbuf.c index 329de797c2..fab12f2e3f 100644 --- a/gdk-pixbuf/gdk-pixbuf.c +++ b/gdk-pixbuf/gdk-pixbuf.c @@ -291,3 +291,20 @@ gdk_pixbuf_get_rowstride (GdkPixbuf *pixbuf) return pixbuf->art_pixbuf->rowstride; } + +/* General initialization hooks */ +const guint gdk_pixbuf_major_version=GDK_PIXBUF_MAJOR, + gdk_pixbuf_minor_version=GDK_PIXBUF_MINOR, + gdk_pixbuf_micro_version=GDK_PIXBUF_MICRO; + +const char *gdk_pixbuf_version = GDK_PIXBUF_VERSION; + +void +gdk_pixbuf_preinit(gpointer app, gpointer modinfo) +{ +} + +void +gdk_pixbuf_postinit(gpointer app, gpointer modinfo) +{ +} |