mirror of https://github.com/PrimeDecomp/prime.git
30 lines
586 B
C++
30 lines
586 B
C++
#ifndef _CZIPOUTPUTSTREAM
|
|
#define _CZIPOUTPUTSTREAM
|
|
|
|
|
|
#include "Kyoto/Streams/COutputStream.hpp"
|
|
|
|
#include "rstl/auto_ptr.hpp"
|
|
|
|
#include "zlib/zlib.h"
|
|
|
|
class CZipOutputStream : public COutputStream {
|
|
public:
|
|
CZipOutputStream(COutputStream* out, int level);
|
|
~CZipOutputStream();
|
|
|
|
void Finish();
|
|
bool Process(bool v);
|
|
void Write(const void* ptr, size_t len);
|
|
|
|
int GetCompressedBytesWritten() { return mCompressedBytesWritten; }
|
|
private:
|
|
COutputStream* mOutput;
|
|
int mCompressedBytesWritten;
|
|
rstl::auto_ptr<z_stream> mZStream;
|
|
int mUnk;
|
|
};
|
|
|
|
|
|
#endif // _CZIPOUTPUTSTREAM
|