diff options
author | Stephen Smalley <sds@tycho.nsa.gov> | 2012-02-09 20:13:23 +0100 |
---|---|---|
committer | Stephen Smalley <sds@tycho.nsa.gov> | 2012-03-30 15:32:46 +0200 |
commit | 779701db515d1a0d363d5a8896252f331bc4e22a (patch) | |
tree | 46aacb687e7126a5a64949dd7ade2f284ee57c15 /minzip/Zip.h | |
parent | Add libselinux to LOCAL_STATIC_LIBRARIES wherever libext4_utils is used. (diff) | |
download | android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar.gz android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar.bz2 android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar.lz android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar.xz android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.tar.zst android_bootable_recovery-779701db515d1a0d363d5a8896252f331bc4e22a.zip |
Diffstat (limited to '')
-rw-r--r-- | minzip/Zip.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/minzip/Zip.h b/minzip/Zip.h index 9f99fba5b..0b1c9d532 100644 --- a/minzip/Zip.h +++ b/minzip/Zip.h @@ -14,6 +14,13 @@ #include "Hash.h" #include "SysUtil.h" +#ifdef HAVE_SELINUX +#include <selinux/selinux.h> +#include <selinux/label.h> +#else +struct selabel_handle; +#endif + /* * One entry in the Zip archive. Treat this as opaque -- use accessors below. * @@ -208,6 +215,7 @@ enum { MZ_EXTRACT_FILES_ONLY = 1, MZ_EXTRACT_DRY_RUN = 2 }; bool mzExtractRecursive(const ZipArchive *pArchive, const char *zipDir, const char *targetDir, int flags, const struct utimbuf *timestamp, - void (*callback)(const char *fn, void*), void *cookie); + void (*callback)(const char *fn, void*), void *cookie, + struct selabel_handle *sehnd); #endif /*_MINZIP_ZIP*/ |