summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2019-05-15 22:59:39 +0200
committerTianjie Xu <xunchang@google.com>2019-07-24 20:36:03 +0200
commit164c60a4f3de934bab7035114546e9500cd8f232 (patch)
tree0311dd6f33655ae9b5f1aec1847405bcd54673fb /common.h
parentMerge "Add command line parser for simulator" (diff)
downloadandroid_bootable_recovery-164c60a4f3de934bab7035114546e9500cd8f232.tar
android_bootable_recovery-164c60a4f3de934bab7035114546e9500cd8f232.tar.gz
android_bootable_recovery-164c60a4f3de934bab7035114546e9500cd8f232.tar.bz2
android_bootable_recovery-164c60a4f3de934bab7035114546e9500cd8f232.tar.lz
android_bootable_recovery-164c60a4f3de934bab7035114546e9500cd8f232.tar.xz
android_bootable_recovery-164c60a4f3de934bab7035114546e9500cd8f232.tar.zst
android_bootable_recovery-164c60a4f3de934bab7035114546e9500cd8f232.zip
Diffstat (limited to '')
-rw-r--r--common.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/common.h b/common.h
index a524a4184..128a69d9b 100644
--- a/common.h
+++ b/common.h
@@ -18,21 +18,8 @@
#include <string>
-// Not using the command-line defined macro here because this header could be included by
-// device-specific recovery libraries. We static assert the value consistency in recovery.cpp.
-static constexpr int kRecoveryApiVersion = 3;
-
-class RecoveryUI;
-struct selabel_handle;
-
-extern struct selabel_handle* sehandle;
-extern RecoveryUI* ui;
-extern bool has_cache;
-
// The current stage, e.g. "1/2".
extern std::string stage;
// The reason argument provided in "--reason=".
extern const char* reason;
-
-bool is_ro_debuggable();