Files
Aerofoil/PortabilityLayer/DeflateCodec.h
2020-09-12 13:32:53 -04:00

15 lines
221 B
C++

#pragma once
#include <stdint.h>
class GpIOStream;
namespace PortabilityLayer
{
class DeflateCodec
{
public:
static bool DecompressStream(GpIOStream *stream, size_t inSize, void *outBuffer, size_t outSize);
};
}