| 1 | #include "rar.hpp" |
| 2 | |
| 3 | void Unpack::CopyString20(uint Length,uint Distance) |
| 4 | { |
| 5 | LastDist=OldDist[OldDistPtr++]=Distance; |
| 6 | OldDistPtr = OldDistPtr & 3; // Needed if RAR 1.5 file is called after RAR 2.0. |
| 7 | LastLength=Length; |
| 8 | DestUnpSize-=Length; |
| 9 | CopyString(Length,Distance); |
| 10 | } |
| 11 | |
| 12 | |
| 13 | void Unpack::Unpack20(bool Solid) |
nothing calls this directly
no outgoing calls
no test coverage detected