499.2.14
by Mark Atwood
fixes as per MontyT's comments, prep for internationalization |
1 |
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
499.2.10
by Mark Atwood
add editor format hints, and other useful metadata comments |
2 |
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
|
499.2.14
by Mark Atwood
fixes as per MontyT's comments, prep for internationalization |
3 |
*
|
499.2.10
by Mark Atwood
add editor format hints, and other useful metadata comments |
4 |
* Copyright (C) 2008 Mark Atwood
|
5 |
*
|
|
6 |
* This program is free software; you can redistribute it and/or modify
|
|
7 |
* it under the terms of the GNU General Public License as published by
|
|
8 |
* the Free Software Foundation; version 2 of the License.
|
|
9 |
*
|
|
10 |
* This program is distributed in the hope that it will be useful,
|
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
13 |
* GNU General Public License for more details.
|
|
14 |
*
|
|
15 |
* You should have received a copy of the GNU General Public License
|
|
16 |
* along with this program; if not, write to the Free Software
|
|
17 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
18 |
*/
|
|
19 |
||
499.2.1
by Mark Atwood
add hooks for errmsg plugin type |
20 |
#ifndef DRIZZLED_ERRMSG_H
|
21 |
#define DRIZZLED_ERRMSG_H
|
|
22 |
||
23 |
#include <drizzled/plugin_errmsg.h> |
|
499.2.2
by Mark Atwood
va_list handing and other fixes for errmsg plugin |
24 |
|
25 |
// need stdarg for va_list
|
|
499.2.1
by Mark Atwood
add hooks for errmsg plugin type |
26 |
#include <stdarg.h> |
27 |
||
28 |
int errmsg_initializer(st_plugin_int *plugin); |
|
29 |
int errmsg_finalizer(st_plugin_int *plugin); |
|
30 |
||
520.1.22
by Brian Aker
Second pass of thd cleanup |
31 |
bool errmsg_vprintf (Session *session, int priority, const char *format, va_list ap); |
32 |
bool errmsg_printf (Session *session, int priority, const char *format, ...); |
|
499.2.1
by Mark Atwood
add hooks for errmsg plugin type |
33 |
|
34 |
#endif /* DRIZZLED_ERRMSG_H */ |