deflateSetDictionary() 개인적인 메소드

private deflateSetDictionary ( ZStream strm, byte dictionary, int dictLength ) : int
strm ZStream
dictionary byte
dictLength int
리턴 int
예제 #1
0
 public int deflateSetDictionary(byte[] dictionary, int dictLength)
 {
     if (dstate == null)
     {
         return(Z_STREAM_ERROR);
     }
     return(dstate.deflateSetDictionary(this, dictionary, dictLength));
 }
예제 #2
0
 protected ZLibStatus deflateSetDictionary(byte[] dictionary, int dictLength)
 {
     if (dstate == null)
     {
         return(ZLibStatus.Z_STREAM_ERROR);
     }
     return(dstate.deflateSetDictionary(this, dictionary, dictLength));
 }