summaryrefslogtreecommitdiffstats
path: root/install.h
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2016-10-19 00:05:21 +0200
committerandroid-build-merger <android-build-merger@google.com>2016-10-19 00:05:21 +0200
commit434697f06b7432a2358550eadd74fb97d617035c (patch)
treec24e3fb0f24bd693e63bfed48e497730164df079 /install.h
parentMerge "Change StringValue to use std::string" am: 2b17b24ae5 (diff)
parentresolve merge conflicts of 6fba98c to stage-aosp-master (diff)
downloadandroid_bootable_recovery-434697f06b7432a2358550eadd74fb97d617035c.tar
android_bootable_recovery-434697f06b7432a2358550eadd74fb97d617035c.tar.gz
android_bootable_recovery-434697f06b7432a2358550eadd74fb97d617035c.tar.bz2
android_bootable_recovery-434697f06b7432a2358550eadd74fb97d617035c.tar.lz
android_bootable_recovery-434697f06b7432a2358550eadd74fb97d617035c.tar.xz
android_bootable_recovery-434697f06b7432a2358550eadd74fb97d617035c.tar.zst
android_bootable_recovery-434697f06b7432a2358550eadd74fb97d617035c.zip
Diffstat (limited to 'install.h')
-rw-r--r--install.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.h b/install.h
index 14de22556..7f66a51ca 100644
--- a/install.h
+++ b/install.h
@@ -18,9 +18,9 @@
#define RECOVERY_INSTALL_H_
#include <string>
+#include <ziparchive/zip_archive.h>
#include "common.h"
-#include "minzip/Zip.h"
enum { INSTALL_SUCCESS, INSTALL_ERROR, INSTALL_CORRUPT, INSTALL_NONE, INSTALL_SKIPPED,
INSTALL_RETRY };
@@ -36,6 +36,6 @@ bool verify_package(const unsigned char* package_data, size_t package_size);
// Read meta data file of the package, write its content in the string pointed by meta_data.
// Return true if succeed, otherwise return false.
-bool read_metadata_from_package(ZipArchive* zip, std::string* meta_data);
+bool read_metadata_from_package(ZipArchiveHandle zip, std::string* meta_data);
#endif // RECOVERY_INSTALL_H_