7 // Minimum size of cache in bytes.
8 #define MIN_CACHE_SIZE 0x100000
9 // Maximum size of cache in bytes
10 #define MAX_CACHE_SIZE 0x7fffffffffffffffLL
11 // Minimum size for an item in the cache. For audio files.
12 #define MIN_CACHEITEM_SIZE 0x100000
15 #include <boost/shared_ptr.hpp>
17 typedef boost::shared_ptr<CICacheItem> CICacheItem_GC;
18 typedef std::list<CICacheItem_GC> CICacheItem_list;
24 // c-file-style: "linux"