first commit

This commit is contained in:
murdle
2026-03-01 02:38:58 +02:00
commit 19250b9db4
19111 changed files with 4358159 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#pragma once
// 4J Stu - We are not using GZIP compression, so this is just a pass through class
#include "InputStream.h"
class GZIPInputStream : public InputStream
{
private:
InputStream *stream;
public:
GZIPInputStream( InputStream *out ) : stream( out ) {};
virtual int read() { return stream->read(); };
virtual int read(byteArray b) { return stream->read( b ); };
virtual int read(byteArray b, unsigned int offset, unsigned int length) { return stream->read(b, offset, length); };
virtual void close() { return stream->close(); };
virtual __int64 skip(__int64 n) { return 0; };
};