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. */
| 826 | No preparation of the structure is needed |
| 827 | return UNZ_OK if there is no problem. */ |
| 828 | extern int ZEXPORT unzGetGlobalInfo64 (unzFile file, unz_global_info64* pglobal_info) |
| 829 | { |
| 830 | unz64_s* s; |
| 831 | if (file==NULL) |
| 832 | return UNZ_PARAMERROR; |
| 833 | s=(unz64_s*)file; |
| 834 | *pglobal_info=s->gi; |
| 835 | return UNZ_OK; |
| 836 | } |
| 837 | |
| 838 | extern int ZEXPORT unzGetGlobalInfo (unzFile file, unz_global_info* pglobal_info32) |
| 839 | { |
no outgoing calls
no test coverage detected