diff options
Diffstat (limited to 'lib/compressor.h')
-rw-r--r-- | lib/compressor.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/compressor.h b/lib/compressor.h index 6429b2a..b2471c4 100644 --- a/lib/compressor.h +++ b/lib/compressor.h @@ -14,10 +14,12 @@ struct erofs_compress; struct erofs_compressor { + const char *name; + int default_level; int best_level; - int (*init)(struct erofs_compress *c, char *alg_name); + int (*init)(struct erofs_compress *c); int (*exit)(struct erofs_compress *c); int (*compress_destsize)(struct erofs_compress *c, |