diff options
author | Timo Teräs <timo.teras@iki.fi> | 2020-10-05 18:52:51 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2020-10-09 16:09:19 +0300 |
commit | 354713d2f746c197eed6a1feb4c6af3420af6c15 (patch) | |
tree | f9dd51bbdde0f25f8e122832cf006076b8452d28 /src/apk_archive.h | |
parent | 7a7eca86709fcf31dbb1acf8b82ff411828fb67b (diff) | |
download | apk-tools-354713d2f746c197eed6a1feb4c6af3420af6c15.tar.gz apk-tools-354713d2f746c197eed6a1feb4c6af3420af6c15.tar.bz2 apk-tools-354713d2f746c197eed6a1feb4c6af3420af6c15.tar.xz apk-tools-354713d2f746c197eed6a1feb4c6af3420af6c15.zip |
rename apk_db_options to apk_ctx, rework logging
makes apk_verbosity non-global
fixes #10682
Diffstat (limited to 'src/apk_archive.h')
-rw-r--r-- | src/apk_archive.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/apk_archive.h b/src/apk_archive.h index 708fd1a..fdce49e 100644 --- a/src/apk_archive.h +++ b/src/apk_archive.h @@ -12,6 +12,7 @@ #include <sys/types.h> #include "apk_blob.h" +#include "apk_print.h" #include "apk_io.h" #define APK_EXTRACTF_NO_CHOWN 0x0001 @@ -31,6 +32,7 @@ int apk_archive_entry_extract(int atfd, const struct apk_file_info *ae, const char *extract_name, const char *hardlink_name, struct apk_istream *is, apk_progress_cb cb, void *cb_ctx, - unsigned int extract_flags); + unsigned int extract_flags, + struct apk_out *out); #endif |