~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/errmsg.h

  • Committer: Mark Atwood
  • Date: 2008-10-07 10:08:29 UTC
  • mto: (520.1.13 drizzle)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: mark@fallenpegasus.com-20081007100829-4ix2nlju4tp55xhr
add hooks for errmsg plugin type

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef DRIZZLED_ERRMSG_H
 
2
#define DRIZZLED_ERRMSG_H
 
3
 
 
4
#include <drizzled/plugin_errmsg.h>
 
5
#include <stdarg.h>
 
6
 
 
7
int errmsg_initializer(st_plugin_int *plugin);
 
8
int errmsg_finalizer(st_plugin_int *plugin);
 
9
 
 
10
void errmsg_vprintf (THD *thd, int priority, const char *format, va_list ap);
 
11
 
 
12
void errmsg_printf (THD *thd, int priority, const char *format, ...);
 
13
 
 
14
#endif /* DRIZZLED_ERRMSG_H */