blob: 91ffae12567b80e175b2f444740c7958f21ec5ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# Common data defining the cached images and data.
int ccd_ncache # Number of images cached
int ccd_maxcache # Maximum size of cache
int ccd_szcache # Current size of cache
int ccd_oldsize # Original memory size
int ccd_pcache # Pointer to image cache structures
common /ccdcache_com/ ccd_ncache, ccd_maxcache, ccd_szcache, ccd_oldsize,
ccd_pcache
|