Files
Aerofoil/PortabilityLayer/DeflateCodec.h

15 lines
221 B
C
Raw Normal View History

#pragma once
#include <stdint.h>
2020-09-12 13:32:53 -04:00
class GpIOStream;
namespace PortabilityLayer
{
class DeflateCodec
{
public:
2020-09-12 13:32:53 -04:00
static bool DecompressStream(GpIOStream *stream, size_t inSize, void *outBuffer, size_t outSize);
};
}