using System.Runtime.InteropServices; namespace SabreTools.Models.NewExecutable { /// [StructLayout(LayoutKind.Sequential)] public sealed class OSFixupRelocationRecord { /// /// Operating system fixup type. /// Floating-point fixups. /// [MarshalAs(UnmanagedType.U2)] public OSFixupType FixupType; /// /// 0 /// public ushort Reserved; } }