Ionic.Zlib.InflateBlocks.InflateBlocks C# (CSharp) Method

InflateBlocks() private method

private InflateBlocks ( ZlibCodec codec, System checkfn, int w ) : System
codec ZlibCodec
checkfn System
w int
return System
        internal InflateBlocks(ZlibCodec codec, System.Object checkfn, int w)
        {
            _codec = codec;
            hufts = new int[MANY * 3];
            window = new byte[w];
            end = w;
            this.checkfn = checkfn;
            mode = InflateBlockMode.TYPE;
            Reset();
        }