Home | History | Annotate | Line # | Download | only in wind
wind_err.et revision 1.1.1.2
      1 #
      2 # Error messages for the wind library
      3 #
      4 # This might look like a com_err file, but is not
      5 #
      6 id "Id"
      7 
      8 error_table wind
      9 
     10 prefix WIND_ERR
     11 error_code NONE,		"No error"
     12 error_code NO_PROFILE,		"No such profile"
     13 error_code OVERRUN,		"Buffer overrun"
     14 error_code UNDERUN,		"Buffer underrun"
     15 error_code LENGTH_NOT_MOD2,	"Length not mod2"
     16 error_code LENGTH_NOT_MOD4,	"Length not mod4"
     17 error_code INVALID_UTF8,	"Invalid UTF-8 combination in string"
     18 error_code INVALID_UTF16,	"Invalid UTF-16 combination in string"
     19 error_code INVALID_UTF32,	"Invalid UTF-32 combination in string"
     20 error_code NO_BOM,		"No byte order mark (BOM) in string"
     21 error_code NOT_UTF16,		"Code can't be represented as UTF-16"
     22 
     23 end
     24