System.util.zlib.InfBlocks.InfBlocks C# (CSharp) Method

InfBlocks() private method

private InfBlocks ( ZStream z, Object checkfn, int w ) : System
z ZStream
checkfn Object
w int
return System
        internal InfBlocks(ZStream z, Object checkfn, int w){
            hufts=new int[MANY*3];
            window=new byte[w];
            end=w;
            this.checkfn = checkfn;
            mode = TYPE;
            reset(z, null);
        }