| 853 | } |
| 854 | |
| 855 | extern int ZEXPORT unzGetFileFlags (unzFile file, unsigned* pflags) |
| 856 | { |
| 857 | unz64_s* s; |
| 858 | if (file==NULL) |
| 859 | return UNZ_PARAMERROR; |
| 860 | s=(unz64_s*)file; |
| 861 | *pflags = s->flags; |
| 862 | return UNZ_OK; |
| 863 | } |
| 864 | |
| 865 | /* |
| 866 | Translate date/time from Dos format to tm_unz (readable more easilty) |