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. */
| 819 | No preparation of the structure is needed |
| 820 | return UNZ_OK if there is no problem. */ |
| 821 | extern 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 | |
| 831 | extern int ZEXPORT unzGetGlobalInfo(unzFile file, unz_global_info* pglobal_info32) |
| 832 | { |
no outgoing calls
no test coverage detected