mirror of
https://github.com/SabreTools/SabreTools.IO.git
synced 2026-09-22 06:36:01 +00:00
19 lines
523 B
C#
19 lines
523 B
C#
namespace SabreTools.IO.Compression.RVZPack
|
|
{
|
|
/// <summary>
|
|
/// Result of packing a single chunk: compressed payload and its logical size.
|
|
/// </summary>
|
|
public struct ChunkResult
|
|
{
|
|
/// <summary>
|
|
/// Packed payload, or null if the chunk contains no junk.
|
|
/// </summary>
|
|
public byte[]? Packed;
|
|
|
|
/// <summary>
|
|
/// Number of bytes the decompressor needs to consume from <see cref="Packed"/>.
|
|
/// </summary>
|
|
public uint RvzPackedSize;
|
|
}
|
|
}
|