| 60 | } |
| 61 | |
| 62 | static uLong godot_read(voidpf opaque, voidpf stream, void *buf, uLong size) { |
| 63 | APKData *zd = (APKData *)stream; |
| 64 | zd->f->get_buffer((uint8_t *)buf, size); |
| 65 | return size; |
| 66 | } |
| 67 | |
| 68 | static uLong godot_write(voidpf opaque, voidpf stream, const void *buf, uLong size) { |
| 69 | return 0; |
nothing calls this directly
no test coverage detected