diff options
Diffstat (limited to '')
-rw-r--r-- | twrpTar.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/twrpTar.hpp b/twrpTar.hpp index 427e6d1c3..3ee6028a5 100644 --- a/twrpTar.hpp +++ b/twrpTar.hpp @@ -38,6 +38,7 @@ class twrpTar { int addFilesToExistingTar(vector <string> files, string tarFile); int createTar(); int addFile(string fn, bool include_root); + int entryExists(string entry); int closeTar(bool gzip); int createTarGZFork(); int createTarFork(); @@ -59,6 +60,7 @@ class twrpTar { int has_data_media; int Archive_File_Count; unsigned long long Archive_Current_Size; + int getArchiveType(); // 1 for compressed - 0 for uncompressed TAR *t; FILE* p; int fd; |