mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 07:37:10 +00:00
15 lines
371 B
C#
15 lines
371 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 class UncompressedMapV5
|
|
{
|
|
/// <summary>
|
|
/// Starting offset / hunk size
|
|
/// </summary>
|
|
public uint StartingOffset;
|
|
}
|
|
}
|