mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-24 07:06:36 +00:00
Add unpacktool
This commit is contained in:
13
unpacktool/IDecompressor.h
Normal file
13
unpacktool/IDecompressor.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#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;
|
||||
};
|
Reference in New Issue
Block a user