Source code export placeholder

This commit is contained in:
elasota
2020-10-17 22:56:27 -04:00
parent 842f070ff5
commit 30b07a77a9
11 changed files with 762 additions and 52 deletions

View File

@@ -6,6 +6,17 @@ class GpIOStream;
namespace PortabilityLayer
{
class DeflateContext
{
public:
static DeflateContext *Create(GpIOStream *stream, int compressionLevel);
virtual void Destroy() = 0;
virtual bool Append(const void *buffer, size_t size) = 0;
virtual bool Flush() = 0;
};
class DeflateCodec
{
public: