snes9xgx/source/ngc/gcunzip.h

23 lines
593 B
C
Raw Normal View History

/****************************************************************************
* Snes9x 1.51 Nintendo Wii/Gamecube Port
*
* softdev July 2006
2008-10-15 08:35:14 +02:00
* Michniewski 2008
* Tantric September 2008
*
* gcunzip.h
*
* File unzip routines
****************************************************************************/
#ifndef _GCUNZIP_H_
#define _GCUNZIP_H_
int IsZipFile (char *buffer);
char * GetFirstZipFilename(int method);
2008-10-14 11:21:34 +02:00
int UnZipBuffer (unsigned char *outbuffer, int method);
int SzParse(char * filepath, int method);
int SzExtractFile(int i, unsigned char *buffer);
void SzClose();
#endif