| 393 | } |
| 394 | |
| 395 | Error FileAccessAPK::get_error() const { |
| 396 | if (!zfile) { |
| 397 | return ERR_UNCONFIGURED; |
| 398 | } |
| 399 | if (eof_reached()) { |
| 400 | return ERR_FILE_EOF; |
| 401 | } |
| 402 | |
| 403 | return OK; |
| 404 | } |
| 405 | |
| 406 | void FileAccessAPK::flush() { |
| 407 | ERR_FAIL(); |
no outgoing calls