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. */
| 1122 | return UNZ_OK if there is no problem. |
| 1123 | */ |
| 1124 | extern int ZEXPORT unzGetCurrentFileInfo64 (unzFile file, |
| 1125 | unz_file_info64 * pfile_info, |
| 1126 | char * szFileName, uLong fileNameBufferSize, |
| 1127 | void *extraField, uLong extraFieldBufferSize, |
| 1128 | char* szComment, uLong commentBufferSize) |
| 1129 | { |
| 1130 | return unz64local_GetCurrentFileInfoInternal(file,pfile_info,NULL, |
| 1131 | szFileName,fileNameBufferSize, |
| 1132 | extraField,extraFieldBufferSize, |
| 1133 | szComment,commentBufferSize); |
| 1134 | } |
| 1135 | |
| 1136 | extern int ZEXPORT unzGetCurrentFileInfo (unzFile file, |
| 1137 | unz_file_info * pfile_info, |
no test coverage detected