mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 15:05:05 +01:00
10 lines
304 B
C
10 lines
304 B
C
|
|
||
|
#ifndef _miniunz_H
|
||
|
#define _miniunz_H
|
||
|
|
||
|
int extractZip(unzFile uf,int opt_extract_without_path,int opt_overwrite,const char* password);
|
||
|
int extractZipOnefile(unzFile uf,const char* filename,int opt_extract_without_path,int opt_overwrite,const char* password);
|
||
|
int makedir(char *newdir);
|
||
|
|
||
|
#endif
|