mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 15:47:27 +00:00
20 lines
511 B
C#
20 lines
511 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.CHD
|
|
{
|
|
/// <see href="https://github.com/mamedev/mame/blob/master/src/lib/util/chd.h"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class MapV1
|
|
{
|
|
/// <summary>
|
|
/// Starting offset within the file
|
|
/// </summary>
|
|
public ulong StartingOffset;
|
|
|
|
/// <summary>
|
|
/// Length of data; If == hunksize, data is uncompressed
|
|
/// </summary>
|
|
public ulong Length;
|
|
}
|
|
}
|