1234567891011121314151617181920212223242526272829303132 |
- #pragma once
- #include <string>
- namespace android {
- namespace gsi {
- bool GetInstallStatus(std::string* status);
- bool GetBootAttempts(const std::string& boot_key, int* attempts);
- static constexpr char kInstallStatusOk[] = "ok";
- static constexpr char kInstallStatusWipe[] = "wipe";
- static constexpr char kInstallStatusDisabled[] = "disabled";
- }
- }
|