mirror of
https://github.com/MidnightCommander/mc
synced 2025-03-05 15:41:34 +03:00

* gcache.c: Added an Image cache for all of the imlib-loaded images to avoid destroying/reloading the images. * gdesktop.c, gtrans.c: Use the image cache.
8 lines
133 B
C
8 lines
133 B
C
#ifndef GCACHE_H
|
|
#define GCACHE_H
|
|
|
|
void image_cache_destroy ();
|
|
GdkImlibImage *image_cache_load_image (char *file);
|
|
|
|
#endif
|