Waternoose, the XBOX 360 emulator
A very young XBOX 360 emulator that aims to boot games some day
Loading...
Searching...
No Matches
lzx.h
1#pragma once
2
3#include <string>
4#include <vector>
5
6int lzx_decompress(const void* lzx_data, size_t lzx_len, void* dest,
7 size_t dest_len, uint32_t window_size, void* window_data,
8 size_t window_data_len);