~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/errmsg.h

  • Committer: Monty Taylor
  • Date: 2008-12-06 22:41:03 UTC
  • mto: (656.1.7 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: monty@inaugust.com-20081206224103-jdouqwt9hb0f01y1
Moved non-working tests into broken suite for easier running of working tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_ERRMSG_H
21
21
#define DRIZZLED_ERRMSG_H
22
22
 
23
 
#include <drizzled/plugin/error_message_handler.h>
 
23
#include <drizzled/plugin_errmsg.h>
24
24
 
25
25
// need stdarg for va_list
26
26
#include <stdarg.h>
28
28
int errmsg_initializer(st_plugin_int *plugin);
29
29
int errmsg_finalizer(st_plugin_int *plugin);
30
30
 
31
 
bool errmsg_vprintf (Session *session, int priority, char const *format, va_list ap);
 
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, ...);
32
33
 
33
34
#endif /* DRIZZLED_ERRMSG_H */