~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/error.h

  • Committer: Brian Aker
  • Date: 2011-01-04 23:23:25 UTC
  • mto: This revision was merged to the branch mainline in revision 2055.
  • Revision ID: brian@tangent.org-20110104232325-qw5a0zs431zbtlwu
Rename of the Loooongggggg   error type over to simply drizzled::error_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
                       const std::string& message);
80
80
#define DRIZZLE_ADD_ERROR_MESSAGE(code, msg) add_error_message(code, STRINGIFY_ARG(code), msg)
81
81
 
82
 
void my_error(drizzled_error_code nr, drizzled::Identifier::const_reference ref);
83
 
void my_error(drizzled_error_code nr);
84
 
void my_error(drizzled_error_code nr, myf MyFlags, ...);
 
82
void my_error(error_t nr, drizzled::Identifier::const_reference ref);
 
83
void my_error(error_t nr);
 
84
void my_error(error_t nr, myf MyFlags, ...);
85
85
void my_message(uint32_t my_err, const char *str, myf MyFlags);
86
86
void my_printf_error(uint32_t my_err, const char *format,
87
87
                     myf MyFlags, ...)