fceugx/source/ngc/gcunzip.h

23 lines
549 B
C
Raw Normal View History

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
*
* Tantric September 2008
*
* gcunzip.h
*
* Unzip routines
****************************************************************************/
#ifndef _GCUNZIP_H_
#define _GCUNZIP_H_
int IsZipFile (char *buffer);
char * GetFirstZipFilename(int method);
2008-10-14 11:21:58 +02:00
int UnZipBuffer (unsigned char *outbuffer, int method);
2008-10-13 20:15:03 +02:00
int SzParse(char * filepath, int method);
int SzExtractFile(int i, unsigned char *buffer);
void SzClose();
2008-09-02 03:57:21 +02:00
#endif