snes9xgx/source/gcunzip.h

23 lines
555 B
C
Raw Normal View History

/****************************************************************************
2010-01-27 22:20:37 +00:00
* Snes9x Nintendo Wii/Gamecube Port
*
* softdev July 2006
2008-10-15 06:35:14 +00:00
* Michniewski 2008
2010-01-27 22:20:37 +00:00
* Tantric 2008-2010
*
* gcunzip.h
*
* File unzip routines
****************************************************************************/
#ifndef _GCUNZIP_H_
#define _GCUNZIP_H_
int IsZipFile (char *buffer);
2009-10-01 22:35:12 +00:00
char * GetFirstZipFilename();
2009-10-03 19:46:57 +00:00
size_t UnZipBuffer (unsigned char *outbuffer);
2009-10-01 22:35:12 +00:00
int SzParse(char * filepath);
2009-10-03 19:46:57 +00:00
size_t SzExtractFile(int i, unsigned char *buffer);
2008-10-14 09:21:34 +00:00
void SzClose();
#endif