WiiFlow_Lite/source/unzip/lz77.h
fix94.1 45441ded06 -BETA wiiflow saves ios settings on the NAND from now on, so
loading up wiiflow is much faster if you use force cIOS load,
you can actually delete, move, copy or whatever the save directly
from the system menu like a normal game save (may more things will
be done in the future this way)
2012-12-26 23:22:44 +00:00

35 lines
821 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
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
int isLZ77compressed(u8 *buffer);
int decompressLZ77content(const u8 *buffer, const u32 length, u8 **output, u32 *outputLen);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif