summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-11-04 17:11:56 +0100
committerandroid-build-merger <android-build-merger@google.com>2016-11-04 17:11:56 +0100
commitb9c3411de7999b967109be6e46099efa38128174 (patch)
tree756a57b612611dfd38a1f32e5b97bd3dac6023ca /common.h
parentMerge "updater: Fix an off-by-1 bug in file_getprop()." am: da2b34b5d0 (diff)
parentMerge "Revert "Revert "Some cleanups to recovery.""" (diff)
downloadandroid_bootable_recovery-b9c3411de7999b967109be6e46099efa38128174.tar
android_bootable_recovery-b9c3411de7999b967109be6e46099efa38128174.tar.gz
android_bootable_recovery-b9c3411de7999b967109be6e46099efa38128174.tar.bz2
android_bootable_recovery-b9c3411de7999b967109be6e46099efa38128174.tar.lz
android_bootable_recovery-b9c3411de7999b967109be6e46099efa38128174.tar.xz
android_bootable_recovery-b9c3411de7999b967109be6e46099efa38128174.tar.zst
android_bootable_recovery-b9c3411de7999b967109be6e46099efa38128174.zip
Diffstat (limited to 'common.h')
-rw-r--r--common.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/common.h b/common.h
index a948fb1a0..319af3d72 100644
--- a/common.h
+++ b/common.h
@@ -17,15 +17,22 @@
#ifndef RECOVERY_COMMON_H
#define RECOVERY_COMMON_H
-#include <stdbool.h>
#include <stdio.h>
#include <stdarg.h>
#define STRINGIFY(x) #x
#define EXPAND(x) STRINGIFY(x)
+class RecoveryUI;
+
+extern RecoveryUI* ui;
extern bool modified_flash;
-typedef struct fstab_rec Volume;
+
+// The current stage, e.g. "1/2".
+extern const char* stage;
+
+// The reason argument provided in "--reason=".
+extern const char* reason;
// fopen a file, mounting volumes and making parent dirs as necessary.
FILE* fopen_path(const char *path, const char *mode);