| 1360 | } |
| 1361 | |
| 1362 | extern int ZEXPORT unzGoToFilePos( |
| 1363 | unzFile file, |
| 1364 | unz_file_pos* file_pos) |
| 1365 | { |
| 1366 | unz64_file_pos file_pos64; |
| 1367 | if (file_pos == NULL) |
| 1368 | return UNZ_PARAMERROR; |
| 1369 | |
| 1370 | file_pos64.pos_in_zip_directory = file_pos->pos_in_zip_directory; |
| 1371 | file_pos64.num_of_file = file_pos->num_of_file; |
| 1372 | return unzGoToFilePos64(file,&file_pos64); |
| 1373 | } |
| 1374 | |
| 1375 | /* |
| 1376 | // Unzip Helper Functions - should be here? |
nothing calls this directly
no test coverage detected