blob: e3c123916025f982175d12da20bde936db569b01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
using System;
namespace Ionic.Zlib
{
public static class ZlibConstants
{
public const int WindowBitsMax = 15;
public const int WindowBitsDefault = 15;
public const int Z_OK = 0;
public const int Z_STREAM_END = 1;
public const int Z_NEED_DICT = 2;
public const int Z_STREAM_ERROR = -2;
public const int Z_DATA_ERROR = -3;
public const int Z_BUF_ERROR = -5;
public const int WorkingBufferSizeDefault = 16384;
public const int WorkingBufferSizeMin = 1024;
}
}
|