mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 23:15:07 +01:00
22 lines
520 B
C
22 lines
520 B
C
/****************************************************************************
|
|
* FCE Ultra
|
|
* Nintendo Wii/Gamecube Port
|
|
*
|
|
* Tantric September 2008
|
|
*
|
|
* gcunzip.h
|
|
*
|
|
* Unzip routines
|
|
****************************************************************************/
|
|
#ifndef _GCUNZIP_H_
|
|
#define _GCUNZIP_H_
|
|
|
|
int IsZipFile (char *buffer);
|
|
char * GetFirstZipFilename();
|
|
size_t UnZipBuffer (unsigned char *outbuffer);
|
|
int SzParse(char * filepath);
|
|
size_t SzExtractFile(int i, unsigned char *buffer);
|
|
void SzClose();
|
|
|
|
#endif
|