using System.Runtime.InteropServices; namespace BinaryObjectScanner.Models.NewExecutable { /// [StructLayout(LayoutKind.Sequential)] public sealed class ImportNameRelocationRecord { /// /// Index into module reference table for the imported module. /// public ushort Index; /// /// Offset within Imported Names Table to procedure name string. /// public ushort Offset; } }