diff options
author | James Christopher Adduono <jc@adduono.com> | 2016-02-29 10:26:04 +0100 |
---|---|---|
committer | Dees Troy <dees_troy@teamw.in> | 2016-03-29 20:38:02 +0200 |
commit | d6f94acc9ad6f60675969bbe20e37717ea795bca (patch) | |
tree | ad707f70a1b307b4592cd5691b8c7f3fb5568162 /partitions.hpp | |
parent | Fix RELINK of toybox for twrp (diff) | |
download | android_bootable_recovery-d6f94acc9ad6f60675969bbe20e37717ea795bca.tar android_bootable_recovery-d6f94acc9ad6f60675969bbe20e37717ea795bca.tar.gz android_bootable_recovery-d6f94acc9ad6f60675969bbe20e37717ea795bca.tar.bz2 android_bootable_recovery-d6f94acc9ad6f60675969bbe20e37717ea795bca.tar.lz android_bootable_recovery-d6f94acc9ad6f60675969bbe20e37717ea795bca.tar.xz android_bootable_recovery-d6f94acc9ad6f60675969bbe20e37717ea795bca.tar.zst android_bootable_recovery-d6f94acc9ad6f60675969bbe20e37717ea795bca.zip |
Diffstat (limited to '')
-rw-r--r-- | partitions.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/partitions.hpp b/partitions.hpp index 90f772cb4..1d43e0478 100644 --- a/partitions.hpp +++ b/partitions.hpp @@ -51,8 +51,11 @@ public: public: bool Is_Mounted(); // Checks mount to see if the partition is currently mounted + bool Is_File_System_Writable(); // Checks if the root directory of the file system can be written to bool Mount(bool Display_Error); // Mounts the partition if it is not mounted bool UnMount(bool Display_Error); // Unmounts the partition if it is mounted + bool ReMount(bool Display_Error); // Remounts the partition + bool ReMount_RW(bool Display_Error); // Remounts the partition with read/write access bool Wipe(string New_File_System); // Wipes the partition bool Wipe(); // Wipes the partition bool Wipe_AndSec(); // Wipes android secure |