diff options
Diffstat (limited to 'archive.h')
-rw-r--r-- | archive.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -17,8 +17,9 @@ struct archiver_args { #define ARCHIVER_WANT_COMPRESSION_LEVELS 1 struct archiver { const char *name; - int (*write_archive)(struct archiver_args *); + int (*write_archive)(const struct archiver *, struct archiver_args *); unsigned flags; + void *data; }; extern void register_archiver(struct archiver *); |