Write info about the ZipFile in the *pglobal_info structure. No preparation of the structure is needed return UNZ_OK if there is no problem.
| 3180 | // No preparation of the structure is needed |
| 3181 | // return UNZ_OK if there is no problem. |
| 3182 | int unzGetCurrentFileInfo (unzFile file, unz_file_info *pfile_info, |
| 3183 | char *szFileName, uLong fileNameBufferSize, void *extraField, uLong extraFieldBufferSize, |
| 3184 | char *szComment, uLong commentBufferSize) |
| 3185 | { return unzlocal_GetCurrentFileInfoInternal(file,pfile_info,NULL,szFileName,fileNameBufferSize, |
| 3186 | extraField,extraFieldBufferSize, szComment,commentBufferSize); |
| 3187 | } |
| 3188 | |
| 3189 | |
| 3190 | // Set the current file of the zipfile to the first file. |
no test coverage detected