2008-09-16 05:42:21 +00:00
|
|
|
/****************************************************************************
|
2008-09-17 02:27:55 +00:00
|
|
|
* Visual Boy Advance GX
|
2008-09-16 05:42:21 +00:00
|
|
|
*
|
|
|
|
* Tantric September 2008
|
|
|
|
*
|
2008-12-30 00:10:12 +00:00
|
|
|
* gcunzip.h
|
2008-09-16 05:42:21 +00:00
|
|
|
*
|
|
|
|
* File unzip routines
|
2008-09-17 02:27:55 +00:00
|
|
|
***************************************************************************/
|
2008-12-30 00:10:12 +00:00
|
|
|
#ifndef _GCUNZIP_H_
|
|
|
|
#define _GCUNZIP_H_
|
2008-09-16 05:42:21 +00:00
|
|
|
|
2008-09-29 07:35:26 +00:00
|
|
|
int IsZipFile (char *buffer);
|
|
|
|
char * GetFirstZipFilename(int method);
|
2008-10-15 07:09:07 +00: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 05:42:21 +00:00
|
|
|
|
|
|
|
#endif
|