Class: Cabriolet::Binary::LITStructures::ResetTableHeader
- Inherits:
-
BinData::Record
- Object
- BinData::Record
- Cabriolet::Binary::LITStructures::ResetTableHeader
- Defined in:
- lib/cabriolet/binary/lit_structures.rb
Overview
Reset Table Header (40 bytes)
Provides reset points for LZX decompression
Instance Method Summary collapse
Instance Method Details
#compressed_length ⇒ Object
218 219 220 |
# File 'lib/cabriolet/binary/lit_structures.rb', line 218 def compressed_length (compressed_length_high << 32) | compressed_length_low end |
#uncompressed_length ⇒ Object
214 215 216 |
# File 'lib/cabriolet/binary/lit_structures.rb', line 214 def uncompressed_length (uncompressed_length_high << 32) | uncompressed_length_low end |