| 60 | } |
| 61 | |
| 62 | hx::zip::zlib::ZLibUncompress::ZLibUncompress(z_stream* inHandle) : handle(inHandle), flush(0) |
| 63 | { |
| 64 | _hx_set_finalizer(this, [](Dynamic obj) { reinterpret_cast<ZLibUncompress*>(obj.mPtr)->close(); }); |
| 65 | } |
| 66 | |
| 67 | hx::zip::Result hx::zip::zlib::ZLibUncompress::execute(cpp::marshal::View<uint8_t> src, cpp::marshal::View<uint8_t> dst) |
| 68 | { |
nothing calls this directly
no test coverage detected