using System.Runtime.InteropServices; namespace BinaryObjectScanner.Models.MSDOS { /// /// Each pointer in the relocation table looks as such /// /// [StructLayout(LayoutKind.Sequential)] public sealed class RelocationEntry { /// /// Offset of the relocation within provided segment. /// public ushort Offset; /// /// Segment of the relocation, relative to the load segment address. /// public ushort Segment; } }