fceugx/source/ngc/gcunzip.h

23 lines
527 B
C
Raw Normal View History

2008-09-02 01:57:21 +00:00
/****************************************************************************
2009-07-22 02:05:49 +00:00
* FCE Ultra
2008-09-02 01:57:21 +00:00
* Nintendo Wii/Gamecube Port
*
* Tantric September 2008
*
* gcunzip.h
*
* Unzip routines
****************************************************************************/
#ifndef _GCUNZIP_H_
#define _GCUNZIP_H_
int IsZipFile (char *buffer);
2009-10-01 22:21:25 +00:00
char * GetFirstZipFilename();
int UnZipBuffer (unsigned char *outbuffer, int device);
int SzParse(char * filepath);
2008-10-13 18:15:03 +00:00
int SzExtractFile(int i, unsigned char *buffer);
void SzClose();
2008-09-02 01:57:21 +00:00
#endif