00001 #ifndef CACHE_INC 00002 #define CACHE_INC 00003 00004 class CICache; 00005 class CICacheItem; 00006 00007 // Minimum size of cache in bytes. 00008 #define MIN_CACHE_SIZE 0x100000 00009 // Maximum size of cache in bytes 00010 #define MAX_CACHE_SIZE 0x7fffffffffffffffLL 00011 // Minimum size for an item in the cache. For audio files. 00012 #define MIN_CACHEITEM_SIZE 0x100000 00013 #endif
1.4.4