mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-12 13:45:35 +00:00
17 lines
483 B
C#
17 lines
483 B
C#
namespace BinaryObjectScanner.Models.Compression.LZ
|
|
{
|
|
/// <see href="https://github.com/wine-mirror/wine/blob/master/include/lzexpand.h"/>
|
|
public enum LZERROR
|
|
{
|
|
LZERROR_OK = 1,
|
|
LZERROR_NOT_LZ = 0,
|
|
LZERROR_BADINHANDLE = -1,
|
|
LZERROR_BADOUTHANDLE = -2,
|
|
LZERROR_READ = -3,
|
|
LZERROR_WRITE = -4,
|
|
LZERROR_GLOBALLOC = -5,
|
|
LZERROR_GLOBLOCK = -6,
|
|
LZERROR_BADVALUE = -7,
|
|
LZERROR_UNKNOWNALG = -8,
|
|
}
|
|
} |