MCPcopy Create free account
hub / github.com/abbeycode/UnrarKit / EndArcHeader

Class EndArcHeader

Libraries/unrar/headers.hpp:263–285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

261
262
263struct 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
288struct CryptHeader:BaseBlock

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected