mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-06 02:45:07 +01:00
15 lines
489 B
C
15 lines
489 B
C
/******************************************************************************
|
|
*
|
|
* 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.
|
|
***************************************************************************/
|
|
#ifndef _UNZIP_H_
|
|
#define _UNZIP_H_
|
|
|
|
extern int IsZipFile (char *buffer);
|
|
int UnZipBuffer (unsigned char *outbuffer, u64 discoffset, char *filename);
|
|
|
|
#endif
|