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