2008-09-02 03:57:21 +02:00
|
|
|
/****************************************************************************
|
2009-07-22 04:05:49 +02:00
|
|
|
* FCE Ultra
|
2008-09-02 03:57:21 +02:00
|
|
|
* Nintendo Wii/Gamecube Port
|
|
|
|
*
|
|
|
|
* Tantric September 2008
|
|
|
|
*
|
|
|
|
* gcunzip.h
|
|
|
|
*
|
|
|
|
* Unzip routines
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef _GCUNZIP_H_
|
|
|
|
#define _GCUNZIP_H_
|
|
|
|
|
2008-12-30 01:05:57 +01:00
|
|
|
int IsZipFile (char *buffer);
|
2009-10-02 00:21:25 +02:00
|
|
|
char * GetFirstZipFilename();
|
2009-10-03 21:44:33 +02:00
|
|
|
size_t UnZipBuffer (unsigned char *outbuffer);
|
2009-10-02 00:21:25 +02:00
|
|
|
int SzParse(char * filepath);
|
2009-10-03 21:44:33 +02:00
|
|
|
size_t SzExtractFile(int i, unsigned char *buffer);
|
2008-10-13 20:15:03 +02:00
|
|
|
void SzClose();
|
2008-09-02 03:57:21 +02:00
|
|
|
|
|
|
|
#endif
|