fceugx/source/gcunzip.h

22 lines
534 B
C
Raw Permalink 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
*
2023-01-30 22:07:47 +01:00
* Tantric 2008-2023
2008-09-02 01:57:21 +00:00
*
* gcunzip.h
*
* Unzip routines
****************************************************************************/
#ifndef _GCUNZIP_H_
#define _GCUNZIP_H_
int IsZipFile (char *buffer);
2009-10-01 22:21:25 +00:00
char * GetFirstZipFilename();
size_t UnZipBuffer (unsigned char *outbuffer, size_t buffersize);
2009-10-01 22:21:25 +00:00
int SzParse(char * filepath);
2009-10-03 19:44:33 +00:00
size_t SzExtractFile(int i, unsigned char *buffer);
2008-10-13 18:15:03 +00:00
void SzClose();
2008-09-02 01:57:21 +00:00
#endif