| 80 | |
| 81 | |
| 82 | void CmdExtract::ExtractArchiveInit(Archive &Arc) |
| 83 | { |
| 84 | DataIO.UnpArcSize=Arc.FileLength(); |
| 85 | |
| 86 | FileCount=0; |
| 87 | MatchedArgs=0; |
| 88 | #ifndef SFX_MODULE |
| 89 | FirstFile=true; |
| 90 | #endif |
| 91 | |
| 92 | GlobalPassword=Cmd->Password.IsSet() || uiIsGlobalPasswordSet(); |
| 93 | |
| 94 | DataIO.UnpVolume=false; |
| 95 | |
| 96 | PrevProcessed=false; |
| 97 | AllMatchesExact=true; |
| 98 | AnySolidDataUnpackedWell=false; |
| 99 | |
| 100 | StartTime.SetCurrentTime(); |
| 101 | } |
| 102 | |
| 103 | |
| 104 | EXTRACT_ARC_CODE CmdExtract::ExtractArchive() |
no test coverage detected