ComponentAce.Compression.Libs.zlib.ZStream.deflateSetDictionary C# (CSharp) 메소드

deflateSetDictionary() 공개 메소드

public deflateSetDictionary ( byte dictionary, int dictLength ) : int
dictionary byte
dictLength int
리턴 int
        public int deflateSetDictionary(byte[] dictionary, int dictLength)
        {
            if (dstate == null)
                return Z_STREAM_ERROR;
            return dstate.deflateSetDictionary(this, dictionary, dictLength);
        }