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-08-19 19:15:08 +02:00
|
|
|
#ifndef _FILEIO_H_
|
|
|
|
#define _FILEIO_H_
|
2008-08-07 14:26:07 +02:00
|
|
|
|
|
|
|
extern int IsZipFile (char *buffer);
|
2008-08-17 22:17:49 +02:00
|
|
|
int UnZipDVD (unsigned char *outbuffer, u64 discoffset, int length);
|
|
|
|
int UnZipSDCARD (unsigned char *outbuffer, char *filename);
|
2008-08-07 14:26:07 +02:00
|
|
|
|
|
|
|
#endif
|