diff options
author | bigbiff bigbiff <bigbiff@teamw.in> | 2014-01-25 21:02:57 +0100 |
---|---|---|
committer | Gerrit Code Review <gerrit2@gerrit> | 2014-02-03 19:00:58 +0100 |
commit | c7360dd26343b704350b7bc0911221c56ecf4695 (patch) | |
tree | a9cec440c2076e1898d50d96043949af18dfa9ed /twrpDU.hpp | |
parent | Add option to set flag for storage=0 (diff) | |
download | android_bootable_recovery-c7360dd26343b704350b7bc0911221c56ecf4695.tar android_bootable_recovery-c7360dd26343b704350b7bc0911221c56ecf4695.tar.gz android_bootable_recovery-c7360dd26343b704350b7bc0911221c56ecf4695.tar.bz2 android_bootable_recovery-c7360dd26343b704350b7bc0911221c56ecf4695.tar.lz android_bootable_recovery-c7360dd26343b704350b7bc0911221c56ecf4695.tar.xz android_bootable_recovery-c7360dd26343b704350b7bc0911221c56ecf4695.tar.zst android_bootable_recovery-c7360dd26343b704350b7bc0911221c56ecf4695.zip |
Diffstat (limited to '')
-rw-r--r-- | twrpDU.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/twrpDU.hpp b/twrpDU.hpp index 04527cd61..dac15f126 100644 --- a/twrpDU.hpp +++ b/twrpDU.hpp @@ -40,8 +40,9 @@ public: uint64_t Get_Folder_Size(const string& Path); // Gets the folder's size using stat void add_absolute_dir(string Path); void add_relative_dir(string Path); - bool check_skip_dirs(string& dir); // Checks a list of directories to see if we should skip it + bool check_skip_dirs(string& dir); vector<string> get_absolute_dirs(void); + void clear_relative_dir(string dir); private: vector<string> absolutedir; vector<string> relativedir; |