diff options
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 |