summaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-11-04 17:04:19 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-11-04 17:04:20 +0100
commita7a8262944d03b068a5f040a9ff40ac260770135 (patch)
treed7638549769cd80391705cd643ac627b5460bd9a /common.h
parentMerge "updater: Fix an off-by-1 bug in file_getprop()." (diff)
parentRevert "Revert "Some cleanups to recovery."" (diff)
downloadandroid_bootable_recovery-a7a8262944d03b068a5f040a9ff40ac260770135.tar
android_bootable_recovery-a7a8262944d03b068a5f040a9ff40ac260770135.tar.gz
android_bootable_recovery-a7a8262944d03b068a5f040a9ff40ac260770135.tar.bz2
android_bootable_recovery-a7a8262944d03b068a5f040a9ff40ac260770135.tar.lz
android_bootable_recovery-a7a8262944d03b068a5f040a9ff40ac260770135.tar.xz
android_bootable_recovery-a7a8262944d03b068a5f040a9ff40ac260770135.tar.zst
android_bootable_recovery-a7a8262944d03b068a5f040a9ff40ac260770135.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);