~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/errmsg.h

  • Committer: Brian Aker
  • Date: 2009-01-06 09:02:30 UTC
  • mfrom: (758.1.5 devel)
  • Revision ID: brian@tangent.org-20090106090230-ov94my79hsiz4bes
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
bool errmsg_vprintf (Session *session, int priority, char const *format, va_list ap);
32
32
 
33
 
// todo: add __attribute__((format(printf, 1, 2)))
34
 
// todo: remove session from declaration, instead reference current_session inside definition
35
 
//       so that places that have not defined Session can still print error messages
36
 
bool errmsg_printf (Session *session, int priority, char const *format, ...);
37
 
 
38
33
#endif /* DRIZZLED_ERRMSG_H */