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++
Raw Permalink Normal View History

2024-05-01 19:09:43 -03:00
#ifndef XNA_CONTENT_LZX_LZXDECODE_HPP
#define XNA_CONTENT_LZX_LZXDECODE_HPP
#include "../../default.hpp"
#include "../../csharp/stream.hpp"
#include <algorithm>
namespace xna {
2024-06-04 14:37:28 -03:00
struct LzxDecoder {
LzxDecoder(int window);
int Decompress(Stream* inData, int inLen, Stream* outData, int outLen);
int window_bits = 0;
2024-05-01 19:09:43 -03:00
};
}
#endif