usbloadergx/source/unzip/miniunz.h

20 lines
427 B
C
Raw Normal View History

#ifndef _miniunz_H
#define _miniunz_H
#ifdef __cplusplus
extern "C"
{
#endif
2010-09-24 02:48:03 +02:00
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