| 152 | |
| 153 | |
| 154 | void RawRead::GetW(wchar *Field,size_t Size) |
| 155 | { |
| 156 | if (ReadPos+2*Size-1<DataSize) |
| 157 | { |
| 158 | RawToWide(&Data[ReadPos],Field,Size); |
| 159 | ReadPos+=sizeof(wchar)*Size; |
| 160 | } |
| 161 | else |
| 162 | memset(Field,0,sizeof(wchar)*Size); |
| 163 | } |
| 164 | |
| 165 | |
| 166 | uint RawRead::GetCRC15(bool ProcessedOnly) // RAR 1.5 block CRC. |
nothing calls this directly
no test coverage detected