1
#ifndef DRIZZLED_QCACHE_H
2
#define DRIZZLED_QCACHE_H
4
#include <drizzled/plugin_qcache.h>
6
int qcache_initializer (st_plugin_int *plugin);
7
int qcache_finalizer (st_plugin_int *plugin);
9
/* todo, fill in this API */
10
/* these are the functions called by the rest of the drizzle server
11
to do whatever this plugin does. */
12
bool qcache_do1 (THD *thd, void *parm1, void *parm2)
13
bool qcache_do2 (THD *thd, void *parm3, void *parm4)
15
#endif /* DRIZZLED_QCACHE_H */