Files
SabreTools.Models/NewExecutable/ImportNameRelocationRecord.cs

17 lines
518 B
C#
Raw Normal View History

namespace SabreTools.Models.NewExecutable
2023-09-04 00:11:04 -04:00
{
/// <see href="http://bytepointer.com/resources/win16_ne_exe_format_win3.0.htm"/>
public sealed class ImportNameRelocationRecord
{
/// <summary>
/// Index into module reference table for the imported module.
/// </summary>
2023-09-10 21:24:10 -04:00
public ushort Index { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Offset within Imported Names Table to procedure name string.
/// </summary>
2023-09-10 21:24:10 -04:00
public ushort Offset { get; set; }
2023-09-04 00:11:04 -04:00
}
}