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
|
|
|
|
*
|
2022-01-09 17:40:41 +01:00
|
|
|
* Tantric 2008-2022
|
2008-09-02 03:57:21 +02:00
|
|
|
*
|
|
|
|
* 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();
|
2018-08-28 22:47:21 +02:00
|
|
|
size_t UnZipBuffer (unsigned char *outbuffer, size_t buffersize);
|
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
|