520.2.2
by Mark Atwood
new plugin types, configvar and qcache |
1 |
#ifndef DRIZZLED_CONFIGVAR_H
|
2 |
#define DRIZZLED_CONFIGVAR_H
|
|
3 |
||
4 |
#include <drizzled/plugin_configvar.h> |
|
5 |
||
6 |
int configvar_initializer (st_plugin_int *plugin); |
|
7 |
int configvar_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. */
|
|
499.2.9
by Mark Atwood
fix mistakes |
12 |
bool configvar_do1 (THD *thd, void *parm1, void *parm2); |
13 |
bool configvar_do2 (THD *thd, void *parm3, void *parm4); |
|
520.2.2
by Mark Atwood
new plugin types, configvar and qcache |
14 |
|
15 |
#endif /* DRIZZLED_CONFIGVAR_H */ |