diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-01 15:55:11 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-01 15:55:11 +0000 |
commit | 97a8dd3857aea9730382e2975a2ee2000fd23ebb (patch) | |
tree | 608f73898f3ed5f466dff68189625fa9328a15be /include/unarchive.h | |
parent | f8aa109a9f7c67b291f240fb3ed91da90f26359b (diff) | |
download | busybox-w32-97a8dd3857aea9730382e2975a2ee2000fd23ebb.tar.gz busybox-w32-97a8dd3857aea9730382e2975a2ee2000fd23ebb.tar.bz2 busybox-w32-97a8dd3857aea9730382e2975a2ee2000fd23ebb.zip |
g[un]zip: add support for -v (verbose).
Add CONFIG_DESKTOP, almost all bloat from this change
is hidden under that.
Diffstat (limited to 'include/unarchive.h')
-rw-r--r-- | include/unarchive.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/unarchive.h b/include/unarchive.h index 653cff80f..82a70aed6 100644 --- a/include/unarchive.h +++ b/include/unarchive.h | |||
@@ -100,14 +100,15 @@ extern void data_align(archive_handle_t *archive_handle, const unsigned short bo | |||
100 | extern const llist_t *find_list_entry(const llist_t *list, const char *filename); | 100 | extern const llist_t *find_list_entry(const llist_t *list, const char *filename); |
101 | extern const llist_t *find_list_entry2(const llist_t *list, const char *filename); | 101 | extern const llist_t *find_list_entry2(const llist_t *list, const char *filename); |
102 | 102 | ||
103 | extern int uncompressStream(int src_fd, int dst_fd); | 103 | extern USE_DESKTOP(long long) int uncompressStream(int src_fd, int dst_fd); |
104 | extern void inflate_init(unsigned int bufsize); | 104 | extern void inflate_init(unsigned int bufsize); |
105 | extern void inflate_cleanup(void); | 105 | extern void inflate_cleanup(void); |
106 | extern int inflate_unzip(int in, int out); | 106 | extern USE_DESKTOP(long long) int inflate_unzip(int in, int out); |
107 | extern int inflate_gunzip(int in, int out); | 107 | extern USE_DESKTOP(long long) int inflate_gunzip(int in, int out); |
108 | extern int unlzma(int src_fd, int dst_fd); | 108 | extern USE_DESKTOP(long long) int unlzma(int src_fd, int dst_fd); |
109 | 109 | ||
110 | extern int open_transformer(int src_fd, int (*transformer)(int src_fd, int dst_fd)); | 110 | extern int open_transformer(int src_fd, |
111 | USE_DESKTOP(long long) int (*transformer)(int src_fd, int dst_fd)); | ||
111 | 112 | ||
112 | 113 | ||
113 | #endif | 114 | #endif |