| 1376 | } |
| 1377 | |
| 1378 | extern int ZEXPORT unzGoToFilePos( |
| 1379 | unzFile file, |
| 1380 | unz_file_pos* file_pos) |
| 1381 | { |
| 1382 | unz64_file_pos file_pos64; |
| 1383 | if (file_pos == NULL) |
| 1384 | return UNZ_PARAMERROR; |
| 1385 | |
| 1386 | file_pos64.pos_in_zip_directory = file_pos->pos_in_zip_directory; |
| 1387 | file_pos64.num_of_file = file_pos->num_of_file; |
| 1388 | return unzGoToFilePos64(file,&file_pos64); |
| 1389 | } |
| 1390 | |
| 1391 | /* Unzip Helper Functions - should be here? */ |
| 1392 | /*///////////////////////////////////////// */ |
nothing calls this directly
no test coverage detected