diff options
Diffstat (limited to 'install.h')
-rw-r--r-- | install.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -18,12 +18,8 @@ #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 }; // Install the package specified by root_path. If INSTALL_SUCCESS is // returned and *wipe_cache is true on exit, caller should wipe the // cache partition. @@ -36,6 +32,10 @@ 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); + +// Verifes the compatibility info in a Treble-compatible package. Returns true directly if the +// entry doesn't exist. +bool verify_package_compatibility(ZipArchiveHandle package_zip); #endif // RECOVERY_INSTALL_H_ |