summaryrefslogtreecommitdiff
path: root/gdk-pixbuf/gdk-pixbuf-cache.h
blob: 0afe745a4f67a563c314ebff5ec2df8ba7753ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _GDK_PIXBUF_CACHE_H_
#define _GDK_PIXBUF_CACHE_H_

/* The optional cache interface */
typedef struct {
	int dummy;
} GdkPixBufCache;

GdkPixBufCache  *gdk_pixbuf_cache_new        (long image_cache_limit,
				              long pixmap_bitmap_cache_limit);
void             gdk_pixbuf_cache_destroy    (GdkPixBufCache *cache);

GdkPixBuf       *gdk_pixbuf_cache_load_image (GdkPixBufCache *cache,
					      const char *file);
#endif