X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=include%2Fwimlib%2Fdecompressor_ops.h;h=44148b32b9e83102cb4b5e5e29640f00144ccccb;hb=b79d426cd90c506974f6c956a9af141b5d257d42;hp=9e642853eb33c37fecb4731e53be8b739582f951;hpb=883833a4b3dabec325edf1ca938000f91d587c00;p=wimlib diff --git a/include/wimlib/decompressor_ops.h b/include/wimlib/decompressor_ops.h index 9e642853..44148b32 100644 --- a/include/wimlib/decompressor_ops.h +++ b/include/wimlib/decompressor_ops.h @@ -11,9 +11,7 @@ struct decompressor_ops { - int (*create_decompressor)(size_t max_block_size, - const struct wimlib_decompressor_params_header *extra_params, - void **private_ret); + int (*create_decompressor)(size_t max_block_size, void **private_ret); int (*decompress)(const void *compressed_data, size_t compressed_size, @@ -28,7 +26,4 @@ extern const struct decompressor_ops lzx_decompressor_ops; extern const struct decompressor_ops xpress_decompressor_ops; extern const struct decompressor_ops lzms_decompressor_ops; -extern void -cleanup_decompressor_params(void); - #endif /* _WIMLIB_DECOMPRESSOR_OPS_H */