mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-17 21:48:30 +00:00
24 lines
566 B
C#
24 lines
566 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.DVD
|
|
{
|
|
/// <see href="https://dvd.sourceforge.net/dvdinfo/ifo_vmg.html"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class ParentalManagementMasksTableEntry
|
|
{
|
|
/// <summary>
|
|
/// Country code
|
|
/// </summary>
|
|
public ushort CountryCode;
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
public ushort Reserved;
|
|
|
|
/// <summary>
|
|
/// Offset to PTL_MAIT
|
|
/// </summary>
|
|
public uint Offset;
|
|
}
|
|
} |