| 350 | } |
| 351 | |
| 352 | void FileAccessAPK::seek_end(int64_t p_position) { |
| 353 | ERR_FAIL_COND(!zfile); |
| 354 | unzSeekCurrentFile(zfile, get_length() + p_position); |
| 355 | } |
| 356 | |
| 357 | uint64_t FileAccessAPK::get_position() const { |
| 358 | ERR_FAIL_COND_V(!zfile, 0); |
no outgoing calls
no test coverage detected