1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/includes/xna/content/lzx/decoder.hpp

16 lines
336 B
C++

#ifndef XNA_CONTENT_LZX_LZXDECODE_HPP
#define XNA_CONTENT_LZX_LZXDECODE_HPP
#include "../../default.hpp"
#include "../../csharp/stream.hpp"
#include <algorithm>
namespace xna {
struct LzxDecoder {
LzxDecoder(int window);
int Decompress(Stream* inData, int inLen, Stream* outData, int outLen);
int window_bits = 0;
};
}
#endif