3 (defcfun gtk-image-get-animation
(g-object pixbuf-animation
)
4 (image (g-object image
)))
6 (defcfun gtk-image-set-from-animation
:void
7 (image (g-object image
))
8 (animation (g-object pixbuf-animation
)))
10 (defun image-animation (image)
11 (gtk-image-get-animation image
))
13 (defun (setf image-animation
) (animation image
)
14 (gtk-image-set-from-animation image animation
))
16 (export 'image-animation
)