mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-08 15:22:54 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
31 lines
756 B
C#
31 lines
756 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Data.Models.DVD
|
|
{
|
|
/// <see href="https://dvd.sourceforge.net/dvdinfo/ifo_vmg.html"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class ProgramChainTableEntry
|
|
{
|
|
/// <summary>
|
|
/// PGC category
|
|
/// </summary>
|
|
[MarshalAs(UnmanagedType.U1)]
|
|
public ProgramChainCategory Category;
|
|
|
|
/// <summary>
|
|
/// Unknown
|
|
/// </summary>
|
|
public byte Unknown;
|
|
|
|
/// <summary>
|
|
/// Parental management mask
|
|
/// </summary>
|
|
public ushort ParentalManagementMask;
|
|
|
|
/// <summary>
|
|
/// Offset to VMGM_PGC, relative to VMGM_LU
|
|
/// </summary>
|
|
public uint Offset;
|
|
}
|
|
}
|