mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 21:06:52 +03:00
0842a5390c
* 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
|