2009-09-30 23:10:58 +00:00
|
|
|
|
|
|
|
#ifndef _miniunz_H
|
|
|
|
#define _miniunz_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2009-10-02 06:55:40 +00:00
|
|
|
int extractZip(unzFile uf,int opt_extract_without_path,int opt_overwrite,const char* password, const char *basedir);
|
2009-09-30 23:10:58 +00:00
|
|
|
int extractZipOnefile(unzFile uf,const char* filename,int opt_extract_without_path,int opt_overwrite,const char* password);
|
|
|
|
int makedir(char *newdir);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|