diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-01 15:55:11 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-10-01 15:55:11 +0000 |
commit | 8e9c6e5019c3b81ebd6df03687987c46c27d083c (patch) | |
tree | 608f73898f3ed5f466dff68189625fa9328a15be /include/unarchive.h | |
parent | ff1d70b077d247f65a556c65ec4bec54adb72edc (diff) | |
download | busybox-w32-8e9c6e5019c3b81ebd6df03687987c46c27d083c.tar.gz busybox-w32-8e9c6e5019c3b81ebd6df03687987c46c27d083c.tar.bz2 busybox-w32-8e9c6e5019c3b81ebd6df03687987c46c27d083c.zip |
g[un]zip: add support for -v (verbose).
Add CONFIG_DESKTOP, almost all bloat from this change
is hidden under that.
git-svn-id: svn://busybox.net/trunk/busybox@16283 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-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 |