diff options
author | Dan Albert <danalbert@google.com> | 2016-10-27 05:08:08 +0200 |
---|---|---|
committer | Dan Albert <danalbert@google.com> | 2016-10-27 05:08:08 +0200 |
commit | 8584fcf677dd45b30121bd0490b06297e6be1871 (patch) | |
tree | 80d0fb9005425e89933b99f5d8a829271eb4a235 /common.h | |
parent | Some cleanups to recovery. (diff) | |
download | android_bootable_recovery-8584fcf677dd45b30121bd0490b06297e6be1871.tar android_bootable_recovery-8584fcf677dd45b30121bd0490b06297e6be1871.tar.gz android_bootable_recovery-8584fcf677dd45b30121bd0490b06297e6be1871.tar.bz2 android_bootable_recovery-8584fcf677dd45b30121bd0490b06297e6be1871.tar.lz android_bootable_recovery-8584fcf677dd45b30121bd0490b06297e6be1871.tar.xz android_bootable_recovery-8584fcf677dd45b30121bd0490b06297e6be1871.tar.zst android_bootable_recovery-8584fcf677dd45b30121bd0490b06297e6be1871.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); |