Binary write the given number of bytes into the compressed file. */
| 206 | /* Binary write the given number of bytes into the compressed file. |
| 207 | */ |
| 208 | int write(const void* buf, size_t len) { |
| 209 | return ::gzwrite(m_fp, (voidp) buf, len); |
| 210 | } |
| 211 | |
| 212 | /* Flushes all pending output into the compressed file. The parameter |
| 213 | * _flush is as in the deflate() function. The return value is the zlib |
no outgoing calls