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