Added bzip2 and winrt info

This commit is contained in:
Nathan Moinvaziri 2014-01-07 20:22:10 -07:00
parent 5d468b7eb7
commit 1dd0b15a7d

View File

@ -28,6 +28,18 @@ fill_buffer_filefunc64(&filefunc64, buffered);
unzOpen2_64(filename, &filefunc64)
```
*PKWARE disk spanning*
To create an archive with multiple disks use zipOpen3_64 supplying a disk_size value in bytes.
```
extern zipFile ZEXPORT zipOpen3_64 OF((const void *pathname, int append,
ZPOS64_T disk_size, zipcharpc* globalcomment, zlib_filefunc64_def* pzlib_filefunc_def));
```
The central directory is the only data stored in the .zip and doesn't follow disk_size restrictions.
When using the unzip library it will automatically determine when in needs to span disks.
*I/O Memory*
To unzip from a zip file in memory use fill_memory_filefunc and supply a proper ourmemory_t structure.
@ -44,14 +56,10 @@ fill_memory_filefunc(&filefunc32, &zipmem);
unzOpen2(filename, &filefunc32);
```
*PKWARE disk spanning*
*BZIP2*
To create an archive with multiple disks use zipOpen3_64 supplying a disk_size value in bytes.
+ Requires #define HAVE_BZIP2
```
extern zipFile ZEXPORT zipOpen3_64 OF((const void *pathname, int append,
ZPOS64_T disk_size, zipcharpc* globalcomment, zlib_filefunc64_def* pzlib_filefunc_def));
```
The central directory is the only data stored in the .zip and doesn't follow disk_size restrictions.
*Windows RT*
When using the unzip library it will automatically determine when in needs to span disks.
+ Requires #define IOWIN32_USING_WINRT_API