SmartAssembly.Zip.SimpleZip.DeflaterHuffman.DeflaterHuffman C# (CSharp) Method

DeflaterHuffman() public method

public DeflaterHuffman ( SimpleZip pending ) : System
pending SimpleZip
return System
            public DeflaterHuffman(SimpleZip.DeflaterPending pending)
            {
                this.pending = pending;
                this.literalTree = new Tree(this, 0x11e, 0x101, 15);
                this.distTree = new Tree(this, 30, 1, 15);
                this.blTree = new Tree(this, 0x13, 4, 7);
                this.d_buf = new short[0x4000];
                this.l_buf = new byte[0x4000];
            }

Same methods

SimpleZip.DeflaterHuffman::DeflaterHuffman ( ) : System