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. */
| 1114 | return UNZ_OK if there is no problem. |
| 1115 | */ |
| 1116 | extern int ZEXPORT unzGetCurrentFileInfo64(unzFile file, |
| 1117 | unz_file_info64* pfile_info, |
| 1118 | char* szFileName, uLong fileNameBufferSize, |
| 1119 | void* extraField, uLong extraFieldBufferSize, |
| 1120 | char* szComment, uLong commentBufferSize) |
| 1121 | { |
| 1122 | return unz64local_GetCurrentFileInfoInternal(file, pfile_info,NULL, |
| 1123 | szFileName, fileNameBufferSize, |
| 1124 | extraField, extraFieldBufferSize, |
| 1125 | szComment, commentBufferSize); |
| 1126 | } |
| 1127 | |
| 1128 | extern int ZEXPORT unzGetCurrentFileInfo(unzFile file, |
| 1129 | unz_file_info* pfile_info, |
no test coverage detected