1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
Definitions required for Logging plugin
*/
#ifndef DRIZZLED_PLUGIN_LOGGING_H
#define DRIZZLED_PLUGIN_LOGGING_H
typedef struct logging_st
{
bool (*logging_pre)(THD *thd);
bool (*logging_post)(THD *thd);
} logging_t;
#endif /* DRIZZLED_PLUGIN_LOGGING_H */
|