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

Function unzGetGlobalInfo64

extlibs/minizip/src/unzip.c:821–829  ·  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

819 No preparation of the structure is needed
820 return UNZ_OK if there is no problem. */
821extern int ZEXPORT unzGetGlobalInfo64(unzFile file, unz_global_info64* pglobal_info)
822{
823 unz64_s* s;
824 if (file == NULL)
825 return UNZ_PARAMERROR;
826 s = (unz64_s*)file;
827 *pglobal_info = s->gi;
828 return UNZ_OK;
829}
830
831extern int ZEXPORT unzGetGlobalInfo(unzFile file, unz_global_info* pglobal_info32)
832{

Callers 3

readEntriesMethod · 0.85
do_listFunction · 0.85
do_extractFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected