usbloadergx/source/unzip/miniunz.h
e.bovendeur dd77cce0d1 Fixed bugs with sending zip files:
* Directory creaton failed
  * Forgot to reload the homebrew browser
  * Removed a bunch of printf statements
2009-10-02 06:55:40 +00:00

18 lines
397 B
C

#ifndef _miniunz_H
#define _miniunz_H
#ifdef __cplusplus
extern "C" {
#endif
int extractZip(unzFile uf,int opt_extract_without_path,int opt_overwrite,const char* password, const char *basedir);
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