snes9xgx/source/unzip/miniunz.h

10 lines
304 B
C
Raw Normal View History

#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