diff options
Diffstat (limited to 'lib/UnrarXLib/extract.hpp')
-rw-r--r-- | lib/UnrarXLib/extract.hpp | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/lib/UnrarXLib/extract.hpp b/lib/UnrarXLib/extract.hpp deleted file mode 100644 index 5de6f72f15..0000000000 --- a/lib/UnrarXLib/extract.hpp +++ /dev/null @@ -1,44 +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); -//#ifdef XBMC - ComprDataIO &GetDataIO() {return DataIO;} -//#endif -}; - -#endif - |