2008-08-06 03:55:59 +02:00
|
|
|
/****************************************************************************
|
2008-09-12 07:28:40 +02:00
|
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
2008-08-06 03:55:59 +02:00
|
|
|
*
|
|
|
|
* softdev July 2006
|
2008-10-15 08:35:14 +02:00
|
|
|
* Michniewski 2008
|
2008-09-12 07:28:40 +02:00
|
|
|
* Tantric September 2008
|
|
|
|
*
|
2008-12-24 09:02:04 +01:00
|
|
|
* gcunzip.h
|
2008-09-12 07:28:40 +02:00
|
|
|
*
|
|
|
|
* File unzip routines
|
2008-08-06 03:55:59 +02:00
|
|
|
****************************************************************************/
|
2008-12-24 09:02:04 +01:00
|
|
|
#ifndef _GCUNZIP_H_
|
|
|
|
#define _GCUNZIP_H_
|
2008-08-22 04:47:08 +02:00
|
|
|
|
2008-12-30 01:08:17 +01:00
|
|
|
int IsZipFile (char *buffer);
|
2009-10-02 00:35:12 +02:00
|
|
|
char * GetFirstZipFilename();
|
|
|
|
int UnZipBuffer (unsigned char *outbuffer, int device);
|
|
|
|
int SzParse(char * filepath);
|
2008-10-14 11:21:34 +02:00
|
|
|
int SzExtractFile(int i, unsigned char *buffer);
|
|
|
|
void SzClose();
|
2008-08-22 04:47:08 +02:00
|
|
|
|
2008-08-06 03:55:59 +02:00
|
|
|
#endif
|