Line data Source code
1 : #include "config.h" 2 : /* Generated from /builds/eaglegai/samba/third_party/heimdal/lib/wind/wind_err.et */ 3 : /* $Id$ */ 4 : 5 : #include <stddef.h> 6 : #include <com_err.h> 7 : #include "wind_err.h" 8 : 9 : #define N_(x) (x) 10 : 11 : static const char *const wind_error_strings[] = { 12 : /* 000 */ N_("No error"), 13 : /* 001 */ N_("No such profile"), 14 : /* 002 */ N_("Buffer overrun"), 15 : /* 003 */ N_("Buffer underrun"), 16 : /* 004 */ N_("Length not mod2"), 17 : /* 005 */ N_("Length not mod4"), 18 : /* 006 */ N_("Invalid UTF-8 combination in string"), 19 : /* 007 */ N_("Invalid UTF-16 combination in string"), 20 : /* 008 */ N_("Invalid UTF-32 combination in string"), 21 : /* 009 */ N_("No byte order mark (BOM) in string"), 22 : /* 010 */ N_("Code can't be represented as UTF-16"), 23 : NULL 24 : }; 25 : 26 : #define num_errors 11 27 : 28 0 : void initialize_wind_error_table_r(struct et_list **list) 29 : { 30 0 : initialize_error_table_r(list, wind_error_strings, num_errors, ERROR_TABLE_BASE_wind); 31 0 : } 32 : 33 0 : void initialize_wind_error_table(void) 34 : { 35 0 : init_error_table(wind_error_strings, ERROR_TABLE_BASE_wind, num_errors); 36 0 : }