MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / unzGetCurrentFileInfo64

Function unzGetCurrentFileInfo64

extlibs/minizip/src/unzip.c:1116–1126  ·  view source on GitHub ↗

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. */

Source from the content-addressed store, hash-verified

1114 return UNZ_OK if there is no problem.
1115*/
1116extern 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
1128extern int ZEXPORT unzGetCurrentFileInfo(unzFile file,
1129 unz_file_info* pfile_info,

Callers 5

getEntrySizeMethod · 0.85
readEntriesMethod · 0.85
unzLocateFileFunction · 0.85
do_listFunction · 0.85
do_extract_currentfileFunction · 0.85

Tested by

no test coverage detected