CfgUSBLoader/source/lz77.h
2015-01-17 10:11:08 +00:00

25 lines
705 B
C

/*******************************************************************************
* lz77.h
*
* Copyright (c) 2009 The Lemon Man
* Copyright (c) 2009 Nicksasa
* Copyright (c) 2009 WiiPower
*
* Distributed under the terms of the GNU General Public License (v2)
* See http://www.gnu.org/licenses/gpl-2.0.txt for more info.
*
* Description:
* -----------
*
******************************************************************************/
#ifndef _LZ77_MODULE
#define _LZ77_MODULE
#define LZ77_0x10_FLAG 0x10
#define LZ77_0x11_FLAG 0x11
int isLZ77compressed(u8 *buffer);
int decompressLZ77content(u8 *buffer, u32 lenght, u8 **output, u32 *outputLen, u32 max_size);
#endif