mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
15 lines
221 B
C++
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);
|
|
};
|
|
}
|