|  |  |  | xmlroff Reference Manual |  | 
|---|---|---|---|---|
#define FO_PIXBUF_IFACE (obj) FoPixbuf; FoPixbufIface; GdkPixbuf* fo_pixbuf_get_pixbuf (FoImage *fo_image); void fo_pixbuf_set_pixbuf (FoImage *fo_image, GdkPixbuf *pixbuf);
#define FO_PIXBUF_IFACE(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), FO_TYPE_PIXBUF, FoPixbufIface))
| obj: | 
typedef struct {
  GTypeInterface g_iface;
  GdkPixbuf * (*get_pixbuf) (FoImage   *fo_image);
  void        (*set_pixbuf) (FoImage   *fo_image,
			     GdkPixbuf *pixbuf);
} FoPixbufIface;
GdkPixbuf* fo_pixbuf_get_pixbuf (FoImage *fo_image);
Gets the GdkPixbuf contained by fo_image.
| fo_image: | The FoImagecontaining the pixbuf. | 
| Returns : | The GdkPixbuf contained by fo_image. |