Files
SabreTools.Models/NewExecutable/ModuleReferenceTableEntry.cs

17 lines
606 B
C#
Raw Normal View History

namespace SabreTools.Models.NewExecutable
2023-09-04 00:11:04 -04:00
{
/// <summary>
/// The module-reference table follows the resident-name table. Each entry
/// contains an offset for the module-name string within the imported-
/// names table; each entry is 2 bytes long.
/// </summary>
/// <see href="http://bytepointer.com/resources/win16_ne_exe_format_win3.0.htm"/>
public sealed class ModuleReferenceTableEntry
{
/// <summary>
/// Offset within Imported Names Table to referenced module name string.
/// </summary>
2023-09-10 21:24:10 -04:00
public ushort Offset { get; set; }
2023-09-04 00:11:04 -04:00
}
}