diff options
author | Tao Bao <tbao@google.com> | 2016-10-27 01:32:30 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-10-27 01:32:30 +0200 |
commit | 00f893fe23a7cee4200a1192c7dded26f114e3d6 (patch) | |
tree | c3fbc0485bda7a11f07fa9cf08adf35d0727081c /common.h | |
parent | Merge "Skip update-on-boot for bootreason in blacklist" (diff) | |
parent | Merge "Some cleanups to recovery." (diff) | |
download | android_bootable_recovery-00f893fe23a7cee4200a1192c7dded26f114e3d6.tar android_bootable_recovery-00f893fe23a7cee4200a1192c7dded26f114e3d6.tar.gz android_bootable_recovery-00f893fe23a7cee4200a1192c7dded26f114e3d6.tar.bz2 android_bootable_recovery-00f893fe23a7cee4200a1192c7dded26f114e3d6.tar.lz android_bootable_recovery-00f893fe23a7cee4200a1192c7dded26f114e3d6.tar.xz android_bootable_recovery-00f893fe23a7cee4200a1192c7dded26f114e3d6.tar.zst android_bootable_recovery-00f893fe23a7cee4200a1192c7dded26f114e3d6.zip |
Diffstat (limited to '')
-rw-r--r-- | common.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -17,15 +17,16 @@ #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; // fopen a file, mounting volumes and making parent dirs as necessary. FILE* fopen_path(const char *path, const char *mode); |