mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-21 18:19:16 +01:00
21 lines
520 B
C
21 lines
520 B
C
/****************************************************************************
|
|
* Visual Boy Advance GX
|
|
*
|
|
* Tantric 2008-2023
|
|
*
|
|
* gcunzip.h
|
|
*
|
|
* File unzip routines
|
|
***************************************************************************/
|
|
#ifndef _GCUNZIP_H_
|
|
#define _GCUNZIP_H_
|
|
|
|
int IsZipFile (char *buffer);
|
|
char * GetFirstZipFilename();
|
|
size_t UnZipBuffer (unsigned char *outbuffer, size_t buffersize);
|
|
int SzParse(char * filepath);
|
|
size_t SzExtractFile(int i, unsigned char *buffer);
|
|
void SzClose();
|
|
|
|
#endif
|