mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 05:40:03 +00:00
21 lines
569 B
C#
21 lines
569 B
C#
namespace BinaryObjectScanner.Models.Compression.MSZIP
|
|
{
|
|
/// <summary>
|
|
/// Non-compressed blocks (BTYPE=00)
|
|
/// </summary>
|
|
/// <see href="https://www.rfc-editor.org/rfc/rfc1951"/>
|
|
public class NonCompressedBlockHeader
|
|
{
|
|
/// <summary>
|
|
/// The number of data bytes in the block
|
|
/// </summary>
|
|
/// <remarks>Bytes 0-1</remarks>
|
|
public ushort LEN;
|
|
|
|
/// <summary>
|
|
/// The one's complement of LEN
|
|
/// </summary>
|
|
/// <remarks>Bytes 2-3</remarks>
|
|
public ushort NLEN;
|
|
}
|
|
} |