~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/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:
6
6
int logging_initializer(st_plugin_int *plugin);
7
7
int logging_finalizer(st_plugin_int *plugin);
8
8
 
9
 
void logging_pre_do (THD *thd, void *stuff);
10
 
void logging_post_do (THD *thd, void *stuff);
 
9
void logging_pre_do (THD *thd);
 
10
void logging_post_do (THD *thd);
11
11
 
12
12
#endif /* DRIZZLED_LOGGING_H */