~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/qcache.h

  • Committer: Mark Atwood
  • Date: 2008-10-16 16:14:18 UTC
  • mto: (499.2.8 drizzle-errmsg)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: mark@fallenpegasus.com-20081016161418-8jrxbh9fhktzcl2m
new plugin types, configvar and qcache

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef DRIZZLED_QCACHE_H
 
2
#define DRIZZLED_QCACHE_H
 
3
 
 
4
#include <drizzled/plugin_qcache.h>
 
5
 
 
6
int qcache_initializer (st_plugin_int *plugin);
 
7
int qcache_finalizer (st_plugin_int *plugin);
 
8
 
 
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)
 
14
 
 
15
#endif /* DRIZZLED_QCACHE_H */