| 136 | |
| 137 | |
| 138 | struct BaseBlock |
| 139 | { |
| 140 | uint HeadCRC; // 'ushort' for RAR 1.5. |
| 141 | HEADER_TYPE HeaderType; // 1 byte for RAR 1.5. |
| 142 | uint Flags; // 'ushort' for RAR 1.5. |
| 143 | uint HeadSize; // 'ushort' for RAR 1.5, up to 2 MB for RAR 5.0. |
| 144 | |
| 145 | bool SkipIfUnknown; |
| 146 | |
| 147 | void Reset() |
| 148 | { |
| 149 | SkipIfUnknown=false; |
| 150 | } |
| 151 | }; |
| 152 | |
| 153 | |
| 154 | struct BlockHeader:BaseBlock |
nothing calls this directly
no outgoing calls
no test coverage detected