~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_logging.h

  • Committer: Mark Atwood
  • Date: 2008-09-12 02:25:32 UTC
  • mto: This revision was merged to the branch mainline in revision 437.
  • Revision ID: mark@fallenpegasus.com-20080912022532-n4oijzfs5r2medho
changes of Brian's recommendation
  get rid of "stuff" pointer
  better handling of unused

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
typedef struct logging_st
9
9
{
10
 
  bool (*logging_pre)(THD *thd, void *stuff);
11
 
  bool (*logging_post)(THD *thd, void *stuff);
 
10
  bool (*logging_pre)(THD *thd);
 
11
  bool (*logging_post)(THD *thd);
12
12
} logging_t;
13
13
 
14
14
#endif /* DRIZZLED_PLUGIN_LOGGING_H */