mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-12 13:45:35 +00:00
35 lines
1.0 KiB
C#
35 lines
1.0 KiB
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace BinaryObjectScanner.Models.MoPaQ
|
|
{
|
|
/// <summary>
|
|
/// Block table contains informations about file sizes and way of their storage within
|
|
/// the archive. It also contains the position of file content in the archive. Size
|
|
/// of block table entry is (like hash table entry). The block table is also encrypted.
|
|
/// </summary>
|
|
/// <see href="http://zezula.net/en/mpq/mpqformat.html"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class BlockEntry
|
|
{
|
|
/// <summary>
|
|
/// Offset of the beginning of the file data, relative to the beginning of the archive.
|
|
/// </summary>
|
|
public uint FilePosition;
|
|
|
|
/// <summary>
|
|
/// Compressed file size
|
|
/// </summary>
|
|
public uint CompressedSize;
|
|
|
|
/// <summary>
|
|
/// Size of uncompressed file
|
|
/// </summary>
|
|
public uint UncompressedSize;
|
|
|
|
/// <summary>
|
|
/// Flags for the file.
|
|
/// </summary>
|
|
public FileFlags Flags;
|
|
}
|
|
}
|