1226031Sstas#
2226031Sstas# Error messages for the wind library
3226031Sstas#
4226031Sstas# This might look like a com_err file, but is not
5226031Sstas#
6226031Sstasid "$Id$"
7226031Sstas
8226031Sstaserror_table wind
9226031Sstas
10226031Sstasprefix WIND_ERR
11226031Sstaserror_code NONE,		"No error"
12226031Sstaserror_code NO_PROFILE,		"No such profile"
13226031Sstaserror_code OVERRUN,		"Buffer overrun"
14226031Sstaserror_code UNDERUN,		"Buffer underrun"
15226031Sstaserror_code LENGTH_NOT_MOD2,	"Length not mod2"
16226031Sstaserror_code LENGTH_NOT_MOD4,	"Length not mod4"
17226031Sstaserror_code INVALID_UTF8,	"Invalid UTF-8 combination in string"
18226031Sstaserror_code INVALID_UTF16,	"Invalid UTF-16 combination in string"
19226031Sstaserror_code INVALID_UTF32,	"Invalid UTF-32 combination in string"
20226031Sstaserror_code NO_BOM,		"No byte order mark (BOM) in string"
21226031Sstaserror_code NOT_UTF16,		"Code can't be represented as UTF-16"
22226031Sstas
23226031Sstasend
24