mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
14 lines
287 B
C++
14 lines
287 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
struct CSInputBuffer;
|
|
|
|
class IDecompressor
|
|
{
|
|
public:
|
|
virtual ~IDecompressor() { }
|
|
virtual bool Reset(CSInputBuffer *input, size_t compressedSize, size_t decompressedSize) = 0;
|
|
virtual bool ReadBytes(void *dest, size_t numBytes) = 0;
|
|
};
|