diff options
author | Dan Albert <danalbert@google.com> | 2016-10-27 07:02:18 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-10-27 07:02:18 +0200 |
commit | ec31f732c3e29978a3379d6c3681af6264621b7a (patch) | |
tree | 904bd1cdcbf5ef265464fe29e1278d5412621aef /common.h | |
parent | Merge "Some cleanups to recovery." am: 46fb0a6a6f am: 00f893fe23 (diff) | |
parent | Merge "Revert "Some cleanups to recovery."" am: 9514eb1934 (diff) | |
download | android_bootable_recovery-ec31f732c3e29978a3379d6c3681af6264621b7a.tar android_bootable_recovery-ec31f732c3e29978a3379d6c3681af6264621b7a.tar.gz android_bootable_recovery-ec31f732c3e29978a3379d6c3681af6264621b7a.tar.bz2 android_bootable_recovery-ec31f732c3e29978a3379d6c3681af6264621b7a.tar.lz android_bootable_recovery-ec31f732c3e29978a3379d6c3681af6264621b7a.tar.xz android_bootable_recovery-ec31f732c3e29978a3379d6c3681af6264621b7a.tar.zst android_bootable_recovery-ec31f732c3e29978a3379d6c3681af6264621b7a.zip |
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -17,16 +17,15 @@ #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); |