Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/Compress/Rar29/Original/extract.hpp')
-rwxr-xr-x7zip/Compress/Rar29/Original/extract.hpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/7zip/Compress/Rar29/Original/extract.hpp b/7zip/Compress/Rar29/Original/extract.hpp
deleted file mode 100755
index b78c988d..00000000
--- a/7zip/Compress/Rar29/Original/extract.hpp
+++ /dev/null
@@ -1,40 +0,0 @@
-#ifndef _RAR_EXTRACT_
-#define _RAR_EXTRACT_
-
-enum EXTRACT_ARC_CODE {EXTRACT_ARC_NEXT,EXTRACT_ARC_REPEAT};
-
-class CmdExtract
-{
- private:
- ComprDataIO DataIO;
- Unpack *Unp;
- long TotalFileCount;
-
- long FileCount;
- long MatchedArgs;
- bool FirstFile;
- bool AllMatchesExact;
- bool ReconstructDone;
-
- char ArcName[NM];
- wchar ArcNameW[NM];
-
- char Password[MAXPASSWORD];
- bool PasswordAll;
- bool PrevExtracted;
- bool SignatureFound;
- char DestFileName[NM];
- wchar DestFileNameW[NM];
- bool PasswordCancelled;
- public:
- CmdExtract();
- ~CmdExtract();
- void DoExtract(CommandData *Cmd);
- void ExtractArchiveInit(CommandData *Cmd,Archive &Arc);
- EXTRACT_ARC_CODE ExtractArchive(CommandData *Cmd);
- bool ExtractCurrentFile(CommandData *Cmd,Archive &Arc,int HeaderSize,
- bool &Repeat);
- static void UnstoreFile(ComprDataIO &DataIO,Int64 DestUnpSize);
-};
-
-#endif