COMP_METHOD has a new argument since some time back...

This commit is contained in:
Richard Levitte 2000-11-30 12:18:10 +00:00
parent 23f80f46a4
commit a4614bf06d
2 changed files with 3 additions and 0 deletions

View File

@ -17,6 +17,7 @@ static COMP_METHOD rle_method={
rle_compress_block, rle_compress_block,
rle_expand_block, rle_expand_block,
NULL, NULL,
NULL,
}; };
COMP_METHOD *COMP_rle(void) COMP_METHOD *COMP_rle(void)

View File

@ -14,6 +14,7 @@ static COMP_METHOD zlib_method_nozlib={
NULL, NULL,
NULL, NULL,
NULL, NULL,
NULL,
}; };
#ifndef ZLIB #ifndef ZLIB
@ -38,6 +39,7 @@ static COMP_METHOD zlib_method={
zlib_compress_block, zlib_compress_block,
zlib_expand_block, zlib_expand_block,
NULL, NULL,
NULL,
}; };
/* /*