Files
BinaryObjectScanner/BurnOutSharp.Models/NewExecutable/ImportNameRelocationRecord.cs
2022-11-04 10:25:48 -07:00

20 lines
568 B
C#

using System.Runtime.InteropServices;
namespace BurnOutSharp.Models.NewExecutable
{
/// <see href="http://bytepointer.com/resources/win16_ne_exe_format_win3.0.htm"/>
[StructLayout(LayoutKind.Sequential)]
public class ImportNameRelocationRecord
{
/// <summary>
/// Index into module reference table for the imported module.
/// </summary>
public ushort Index;
/// <summary>
/// Offset within Imported Names Table to procedure name string.
/// </summary>
public ushort Offset;
}
}