2025-09-26 11:57:18 -04:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.CHD
|
2025-09-26 11:57:18 -04:00
|
|
|
{
|
2025-10-30 21:27:37 -04:00
|
|
|
/// <see href="https://github.com/mamedev/mame/blob/master/src/lib/util/chd.h"/>
|
2025-09-26 11:57:18 -04:00
|
|
|
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
|
|
|
|
|
public abstract class Header
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 'MComprHD'
|
|
|
|
|
/// </summary>
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 8)]
|
2025-10-31 13:59:28 -04:00
|
|
|
public string Tag = string.Empty;
|
2025-09-26 11:57:18 -04:00
|
|
|
|
|
|
|
|
/// <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
|
|
|
}
|