X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=include%2Fwimlib%2Fdecompressor_ops.h;h=44148b32b9e83102cb4b5e5e29640f00144ccccb;hb=723d5dbc1705200082f640453f19233a386bc655;hp=7022dfffc05dc45c075eec2107862d7edaca247a;hpb=cf859259f51d8d5a166abaed9c564419ca340df9;p=wimlib diff --git a/include/wimlib/decompressor_ops.h b/include/wimlib/decompressor_ops.h index 7022dfff..44148b32 100644 --- a/include/wimlib/decompressor_ops.h +++ b/include/wimlib/decompressor_ops.h @@ -9,13 +9,9 @@ #include -struct wimlib_decompressor_params_header; - 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, @@ -30,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 */