summaryrefslogtreecommitdiff
path: root/firmware/include/zip.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/include/zip.h')
-rw-r--r--firmware/include/zip.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/include/zip.h b/firmware/include/zip.h
index f6870a53d2..70d225cfd7 100644
--- a/firmware/include/zip.h
+++ b/firmware/include/zip.h
@@ -58,6 +58,10 @@ int zip_read_shallow(struct zip* z, zip_callback cb, void* ctx);
58// this can also pickup where a successful shallow read leftoff 58// this can also pickup where a successful shallow read leftoff
59int zip_read_deep(struct zip* z, zip_callback cb, void* ctx); 59int zip_read_deep(struct zip* z, zip_callback cb, void* ctx);
60 60
61// extract the contents to an existing directory
62// this can also pickup where a successful shallow read leftoff
63int zip_extract(struct zip* z, const char* root, zip_callback cb, void* ctx);
64
61// returns system resources 65// returns system resources
62void zip_close(struct zip* z); 66void zip_close(struct zip* z);
63 67