123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- using System;
- namespace BestHTTP.Decompression.Zlib
- {
-
-
-
- public static class ZlibConstants
- {
-
-
-
- public const int WindowBitsMax = 15;
-
-
-
- public const int WindowBitsDefault = WindowBitsMax;
-
-
-
- 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;
-
-
-
- #if NETCF
- public const int WorkingBufferSizeDefault = 8192;
- #else
- public const int WorkingBufferSizeDefault = 16384;
- #endif
-
-
-
- public const int WorkingBufferSizeMin = 1024;
- }
- }
|