Files

26 lines
694 B
C#
Raw Permalink Normal View History

using System.Runtime.InteropServices;
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.CHD
{
2025-10-30 21:27:37 -04:00
/// <see href="https://github.com/mamedev/mame/blob/master/src/lib/util/chd.h"/>
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public abstract class Header
{
/// <summary>
/// 'MComprHD'
/// </summary>
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 8)]
public string Tag = string.Empty;
/// <summary>
/// Length of header (including tag and length fields)
/// </summary>
public uint Length;
/// <summary>
/// Drive format version
/// </summary>
public uint Version;
}
2025-10-30 21:27:37 -04:00
}