inflateSetDictionary() private méthode

private inflateSetDictionary ( ZStream z, byte dictionary, int dictLength ) : int
z ZStream
dictionary byte
dictLength int
Résultat int
Exemple #1
0
 public int inflateSetDictionary(byte[] dictionary, int dictLength)
 {
     if (istate == null)
     {
         return(Z_STREAM_ERROR);
     }
     return(istate.inflateSetDictionary(this, dictionary, dictLength));
 }