aboutsummaryrefslogtreecommitdiff
path: root/cache.h
blob: f5306c5c1129992553de3e624101539129d5e908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef CACHE_H
#define CACHE_H

#include "uint32.h"
#include "uint64.h"

extern uint64 cache_motion;
extern int cache_init(unsigned int);
extern void cache_set(const char *,unsigned int,const char *,unsigned int,uint32);
extern char *cache_get(const char *,unsigned int,unsigned int *,uint32 *);

#endif