| 261 | |
| 262 | |
| 263 | struct EndArcHeader:BaseBlock |
| 264 | { |
| 265 | // Optional CRC32 of entire archive up to start of EndArcHeader block. |
| 266 | // Present in RAR 4.x archives if EARC_DATACRC flag is set. |
| 267 | uint ArcDataCRC; |
| 268 | |
| 269 | uint VolNumber; // Optional number of current volume. |
| 270 | |
| 271 | // 7 additional zero bytes can be stored here if EARC_REVSPACE is set. |
| 272 | |
| 273 | bool NextVolume; // Not last volume. |
| 274 | bool DataCRC; |
| 275 | bool RevSpace; |
| 276 | bool StoreVolNumber; |
| 277 | void Reset() |
| 278 | { |
| 279 | BaseBlock::Reset(); |
| 280 | NextVolume=false; |
| 281 | DataCRC=false; |
| 282 | RevSpace=false; |
| 283 | StoreVolNumber=false; |
| 284 | } |
| 285 | }; |
| 286 | |
| 287 | |
| 288 | struct CryptHeader:BaseBlock |
nothing calls this directly
no outgoing calls
no test coverage detected