A bunch of constants used in the Zlib interface. More...
Public Attributes | |
const int | Z_NO_FLUSH = 0 |
No flush at all. More... | |
const int | Z_PARTIAL_FLUSH = 1 |
A little bit of flush? More... | |
const int | Z_SYNC_FLUSH = 2 |
Sync flush? More... | |
const int | Z_FULL_FLUSH = 3 |
Full flush? More... | |
const int | Z_FINISH = 4 |
Finish? More... | |
const int | WINDOW_BITS_MAX = 15 |
The maximum number of window bits for the Deflate algorithm. More... | |
const int | WINDOW_BITS_DEFAULT = WINDOW_BITS_MAX |
The default number of window bits for the Deflate algorithm. More... | |
const int | Z_OK = 0 |
indicates everything is A-OK More... | |
const int | Z_STREAM_END = 1 |
Indicates that the last operation reached the end of the stream. More... | |
const int | Z_NEED_DICT = 2 |
The operation ended in need of a dictionary. More... | |
const int | Z_STREAM_ERROR = -2 |
There was an error with the stream - not enough data, not open and readable, etc. More... | |
const int | Z_DATA_ERROR = -3 |
There was an error with the data - not enough data, bad data, etc. More... | |
const int | Z_BUF_ERROR = -5 |
There was an error with the working buffer. More... | |
A bunch of constants used in the Zlib interface.
const int UniExtensions.Zlib.ZlibConstants.WINDOW_BITS_DEFAULT = WINDOW_BITS_MAX |
The default number of window bits for the Deflate algorithm.
const int UniExtensions.Zlib.ZlibConstants.WINDOW_BITS_MAX = 15 |
The maximum number of window bits for the Deflate algorithm.
const int UniExtensions.Zlib.ZlibConstants.Z_BUF_ERROR = -5 |
There was an error with the working buffer.
const int UniExtensions.Zlib.ZlibConstants.Z_DATA_ERROR = -3 |
There was an error with the data - not enough data, bad data, etc.
const int UniExtensions.Zlib.ZlibConstants.Z_FINISH = 4 |
Finish?
const int UniExtensions.Zlib.ZlibConstants.Z_FULL_FLUSH = 3 |
Full flush?
const int UniExtensions.Zlib.ZlibConstants.Z_NEED_DICT = 2 |
The operation ended in need of a dictionary.
const int UniExtensions.Zlib.ZlibConstants.Z_NO_FLUSH = 0 |
No flush at all.
const int UniExtensions.Zlib.ZlibConstants.Z_OK = 0 |
indicates everything is A-OK
const int UniExtensions.Zlib.ZlibConstants.Z_PARTIAL_FLUSH = 1 |
A little bit of flush?
const int UniExtensions.Zlib.ZlibConstants.Z_STREAM_END = 1 |
Indicates that the last operation reached the end of the stream.
const int UniExtensions.Zlib.ZlibConstants.Z_STREAM_ERROR = -2 |
There was an error with the stream - not enough data, not open and readable, etc.
const int UniExtensions.Zlib.ZlibConstants.Z_SYNC_FLUSH = 2 |
Sync flush?