Lines Matching refs:OF
3 part of the MiniZip project - ( http://www.winimage.com/zLibDll/minizip.html )
7 Modifications of Unzip for Zip64
17 Condition of use and distribution are the same than zlib :
21 arising from the use of this software.
27 1. The origin of this software must not be misrepresented; you must not
39 See header of unzip64.c
65 /* like the STRICT of WIN32, we define a pointer that cannot be converted
89 uInt tm_mday; /* day of the month - [1,31] */
95 These data comes from the end of central dir */
98 ZPOS64_T number_entry; /* total number of entries in
100 uLong size_comment; /* size of the global comment of the zipfile */
105 uLong number_entry; /* total number of entries in
107 uLong size_comment; /* size of the global comment of the zipfile */
153 extern int ZEXPORT unzStringFileNameCompare OF ((const char* fileName1,
161 If iCaseSenisivity = 0, case sensitivity is defaut of your operating system
166 extern unzFile ZEXPORT unzOpen OF((const char *path));
167 extern unzFile ZEXPORT unzOpen64 OF((const void *path));
175 of this unzip package.
184 extern unzFile ZEXPORT unzOpen2 OF((const char *path,
187 Open a Zip file, like unzOpen, but provide a set of file low level API
191 extern unzFile ZEXPORT unzOpen2_64 OF((const void *path,
194 Open a Zip file, like unz64Open, but provide a set of file low level API
198 extern int ZEXPORT unzClose OF((unzFile file));
205 extern int ZEXPORT unzGetGlobalInfo OF((unzFile file,
208 extern int ZEXPORT unzGetGlobalInfo64 OF((unzFile file,
212 No preparation of the structure is needed
216 extern int ZEXPORT unzGetGlobalComment OF((unzFile file,
220 Get the global comment string of the ZipFile, in the szComment buffer.
221 uSizeBuf is the size of the szComment buffer.
222 return the number of byte copied or an error code <0
227 /* Unzip package allow you browse the directory of the zipfile */
229 extern int ZEXPORT unzGoToFirstFile OF((unzFile file));
231 Set the current file of the zipfile to the first file.
235 extern int ZEXPORT unzGoToNextFile OF((unzFile file));
237 Set the current file of the zipfile to the next file.
242 extern int ZEXPORT unzLocateFile OF((unzFile file,
261 uLong num_of_file; /* # of file */
275 ZPOS64_T num_of_file; /* # of file */
288 extern int ZEXPORT unzGetCurrentFileInfo64 OF((unzFile file,
297 extern int ZEXPORT unzGetCurrentFileInfo OF((unzFile file,
310 (fileNameBufferSize is the size of the buffer)
312 (extraFieldBufferSize is the size of the buffer).
313 This is the Central-header version of the extra field
314 if szComment!=NULL, the comment string of the file will be copied in szComment
315 (commentBufferSize is the size of the buffer)
321 extern ZPOS64_T ZEXPORT unzGetCurrentFileZStreamPos64 OF((unzFile file));
327 /* for reading the content of the current zipfile, you can open it, read data
331 extern int ZEXPORT unzOpenCurrentFile OF((unzFile file));
337 extern int ZEXPORT unzOpenCurrentFilePassword OF((unzFile file,
345 extern int ZEXPORT unzOpenCurrentFile2 OF((unzFile file,
352 *method will receive method of compression, *level will receive level of
358 extern int ZEXPORT unzOpenCurrentFile3 OF((unzFile file,
366 *method will receive method of compression, *level will receive level of
373 extern int ZEXPORT unzCloseCurrentFile OF((unzFile file));
379 extern int ZEXPORT unzReadCurrentFile OF((unzFile file,
385 len the size of buf.
387 return the number of byte copied if somes bytes are copied
388 return 0 if the end of file was reached
393 extern z_off_t ZEXPORT unztell OF((unzFile file));
395 extern ZPOS64_T ZEXPORT unztell64 OF((unzFile file));
400 extern int ZEXPORT unzeof OF((unzFile file));
402 return 1 if the end of file was reached, 0 elsewhere
405 extern int ZEXPORT unzGetLocalExtrafield OF((unzFile file,
410 This is the local-header version of the extra field (sometimes, there is
413 if buf==NULL, it return the size of the local extra field
415 if buf!=NULL, len is the size of the buffer, the extra header is copied in
417 the return value is the number of bytes copied in buf, or (if <0)