Genesis-Plus-GX/source/ngc/fileio/unzip.h

15 lines
489 B
C
Raw Normal View History

2008-08-07 14:26:07 +02:00
/******************************************************************************
*
* Nintendo Gamecube Zip Support
*
* Only partial support is included, in that only the first file within the archive
* is considered to be a ROM image.
***************************************************************************/
2008-12-11 18:38:29 +01:00
#ifndef _UNZIP_H_
#define _UNZIP_H_
2008-08-07 14:26:07 +02:00
extern int IsZipFile (char *buffer);
2008-12-11 18:38:29 +01:00
int UnZipBuffer (unsigned char *outbuffer, u64 discoffset, char *filename);
2008-08-07 14:26:07 +02:00
#endif