Genesis-Plus-GX/source/ngc/fileio.h
2008-08-21 20:34:00 +00:00

16 lines
545 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 _FILEIO_H_
#define _FILEIO_H_
extern int IsZipFile (char *buffer);
int UnZipDVD (unsigned char *outbuffer, u64 discoffset, int length);
int UnZipSDCARD (unsigned char *outbuffer, char *filename);
#endif