mirror of
https://github.com/SabreTools/SabreTools.IO.git
synced 2026-09-22 14:45:58 +00:00
24 lines
565 B
C#
24 lines
565 B
C#
|
|
namespace SabreTools.IO.Compression.RVZPack
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// File entry with start and end byte offsets on disc
|
||
|
|
/// </summary>
|
||
|
|
public struct FileEntry
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Indicates if the entry respresents a directory
|
||
|
|
/// </summary>
|
||
|
|
public bool IsDirectory;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Starting data offset for the entry
|
||
|
|
/// </summary>
|
||
|
|
public long FileStart;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Ending data offset for the entry
|
||
|
|
/// </summary>
|
||
|
|
public long FileEnd;
|
||
|
|
}
|
||
|
|
}
|