Files
SabreTools.Models/DVD/ParentalManagementMasksTableEntry.cs

24 lines
566 B
C#
Raw Permalink Normal View History

2024-04-23 13:30:43 -04:00
using System.Runtime.InteropServices;
2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.DVD
2023-09-04 00:11:04 -04:00
{
/// <see href="https://dvd.sourceforge.net/dvdinfo/ifo_vmg.html"/>
2024-04-23 13:30:43 -04:00
[StructLayout(LayoutKind.Sequential)]
2023-09-04 00:11:04 -04:00
public sealed class ParentalManagementMasksTableEntry
{
/// <summary>
/// Country code
/// </summary>
2024-04-23 13:30:43 -04:00
public ushort CountryCode;
2023-09-04 00:11:04 -04:00
/// <summary>
/// Reserved
/// </summary>
2024-04-23 13:30:43 -04:00
public ushort Reserved;
2023-09-04 00:11:04 -04:00
/// <summary>
/// Offset to PTL_MAIT
/// </summary>
2024-04-23 13:30:43 -04:00
public uint Offset;
2023-09-04 00:11:04 -04:00
}
}