summaryrefslogtreecommitdiffstats
path: root/minzip/Zip.h
diff options
context:
space:
mode:
authorKenny Root <kroot@android.com>2012-03-31 00:18:10 +0200
committerandroid code review <noreply-gerritcodereview@google.com>2012-03-31 00:18:11 +0200
commit155cd3c155004433215147437cdf71844c9efd87 (patch)
tree46aacb687e7126a5a64949dd7ade2f284ee57c15 /minzip/Zip.h
parentReconcile with ics-mr1-release (diff)
parentExtend recovery and updater to support setting file security contexts. (diff)
downloadandroid_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar
android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar.gz
android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar.bz2
android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar.lz
android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar.xz
android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.tar.zst
android_bootable_recovery-155cd3c155004433215147437cdf71844c9efd87.zip
Diffstat (limited to 'minzip/Zip.h')
-rw-r--r--minzip/Zip.h10
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*/