mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
74268afdeb
1999-10-18 Federico Mena Quintero <federico@redhat.com> * src/*: Reindented to use the GNOME Indentation.
16 lines
440 B
C
16 lines
440 B
C
#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
|