2008-09-16 07:42:21 +02:00
|
|
|
/****************************************************************************
|
2008-09-17 04:27:55 +02:00
|
|
|
* Visual Boy Advance GX
|
2008-09-16 07:42:21 +02:00
|
|
|
*
|
|
|
|
* Tantric September 2008
|
|
|
|
*
|
2008-12-30 01:10:12 +01:00
|
|
|
* gcunzip.h
|
2008-09-16 07:42:21 +02:00
|
|
|
*
|
|
|
|
* File unzip routines
|
2008-09-17 04:27:55 +02:00
|
|
|
***************************************************************************/
|
2008-12-30 01:10:12 +01:00
|
|
|
#ifndef _GCUNZIP_H_
|
|
|
|
#define _GCUNZIP_H_
|
2008-09-16 07:42:21 +02:00
|
|
|
|
2008-09-29 09:35:26 +02:00
|
|
|
int IsZipFile (char *buffer);
|
|
|
|
char * GetFirstZipFilename(int method);
|
2008-10-15 09:09:07 +02:00
|
|
|
int UnZipBuffer (unsigned char *outbuffer, int method);
|
|
|
|
int SzParse(char * filepath, int method);
|
|
|
|
int SzExtractFile(int i, unsigned char *buffer);
|
|
|
|
void SzClose();
|
2008-09-16 07:42:21 +02:00
|
|
|
|
|
|
|
#endif
|