diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-12-08 00:18:13 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-12-08 00:18:13 +0000 |
commit | 29969a908198ed1523141c2b52dd14e1b2b32ef6 (patch) | |
tree | f896d5b6d8d3d3aea53bd661bad6353c6209b7be /gdk-pixbuf | |
parent | bbfec646e15a64a2bd03227b1be05519c20cc2ab (diff) | |
download | gtk+-29969a908198ed1523141c2b52dd14e1b2b32ef6.tar.gz |
Add docs.
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/ChangeLog | 5 | ||||
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-animation.h | 4 | ||||
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-io.h | 1 |
3 files changed, 10 insertions, 0 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog index 5b57895192..5120a9ef29 100644 --- a/gdk-pixbuf/ChangeLog +++ b/gdk-pixbuf/ChangeLog @@ -1,3 +1,8 @@ +2002-12-08 Matthias Clasen <maclas@gmx.de> + + * gdk-pixbuf-animation.h: + * gdk-pixbuf-io.h: Add /*< public|private >*/ markers. + Sat Dec 7 10:14:05 2002 Owen Taylor <otaylor@redhat.com> * Makefile.am (gdk-pixbuf.loaders): Make gdk-pixbuf.loaders diff --git a/gdk-pixbuf/gdk-pixbuf-animation.h b/gdk-pixbuf/gdk-pixbuf-animation.h index d8091e2c87..d5f0bd14bc 100644 --- a/gdk-pixbuf/gdk-pixbuf-animation.h +++ b/gdk-pixbuf/gdk-pixbuf-animation.h @@ -50,6 +50,8 @@ struct _GdkPixbufAnimation { struct _GdkPixbufAnimationClass { GObjectClass parent_class; + /*< public >*/ + gboolean (*is_static_image) (GdkPixbufAnimation *anim); GdkPixbuf* (*get_static_image) (GdkPixbufAnimation *anim); @@ -79,6 +81,8 @@ struct _GdkPixbufAnimationIter { struct _GdkPixbufAnimationIterClass { GObjectClass parent_class; + /*< public >*/ + int (*get_delay_time) (GdkPixbufAnimationIter *iter); GdkPixbuf* (*get_pixbuf) (GdkPixbufAnimationIter *iter); diff --git a/gdk-pixbuf/gdk-pixbuf-io.h b/gdk-pixbuf/gdk-pixbuf-io.h index f5a17c0736..d62669af20 100644 --- a/gdk-pixbuf/gdk-pixbuf-io.h +++ b/gdk-pixbuf/gdk-pixbuf-io.h @@ -95,6 +95,7 @@ struct _GdkPixbufModule { gchar **param_values, GError **error); + /*< private >*/ void (*_reserved1) (void); void (*_reserved2) (void); void (*_reserved3) (void); |