~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/logging.h

  • Committer: Mark Atwood
  • Date: 2008-10-17 20:35:11 UTC
  • mto: (520.1.13 drizzle)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: mark@fallenpegasus.com-20081017203511-q1s2pruvxf6d7it2
fixes as per MontyT's comments, prep for internationalization

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
3
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
 
 
 
3
 *
5
4
 *  Copyright (C) 2008 Mark Atwood
6
5
 *
7
6
 *  This program is free software; you can redistribute it and/or modify
16
15
 *  You should have received a copy of the GNU General Public License
17
16
 *  along with this program; if not, write to the Free Software
18
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 
20
18
 */
21
19
 
22
20
#ifndef DRIZZLED_LOGGING_H
31
29
 * pull everything it needs out of the thd.  If need to add
32
30
 * parameters, look at how errmsg.h and errmsg.cc do it. */
33
31
 
34
 
void logging_pre_do (THD *thd);
35
 
void logging_post_do (THD *thd);
 
32
bool logging_pre_do (THD *thd);
 
33
bool logging_post_do (THD *thd);
36
34
 
37
35
#endif /* DRIZZLED_LOGGING_H */