Files
SabreTools.Serialization/SabreTools.Data.Models/NewExecutable/Executable.cs

68 lines
2.2 KiB
C#
Raw Normal View History

2025-09-26 12:09:34 -04:00
using System.Collections.Generic;
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.NewExecutable
2025-09-26 12:09:34 -04:00
{
/// <summary>
/// The segmented EXE header contains general information about the EXE
/// file and contains information on the location and size of the other
/// sections. The Windows loader copies this section, along with other
/// data, into the module table in the system data. The module table is
/// internal data used by the loader to manage the loaded executable
/// modules in the system and to support dynamic linking.
/// </summary>
/// <see href="https://web.archive.org/web/20240422070115/http://bytepointer.com/resources/win16_ne_exe_format_win3.0.htm"/>
/// <see href="https://wiki.osdev.org/NE"/>
public sealed class Executable
{
/// <summary>
/// MS-DOS executable stub
/// </summary>
public MSDOS.Executable Stub { get; set; } = new();
2025-09-26 12:09:34 -04:00
/// <summary>
/// New Executable header
/// </summary>
public ExecutableHeader Header { get; set; } = new();
2025-09-26 12:09:34 -04:00
/// <summary>
/// Segment table
/// </summary>
public SegmentTableEntry[] SegmentTable { get; set; } = [];
2025-09-26 12:09:34 -04:00
/// <summary>
/// Resource table
/// </summary>
public ResourceTable ResourceTable { get; set; } = new();
2025-09-26 12:09:34 -04:00
/// <summary>
/// Resident-Name table
/// </summary>
public ResidentNameTableEntry[] ResidentNameTable { get; set; } = [];
2025-09-26 12:09:34 -04:00
/// <summary>
/// Module-Reference table
/// </summary>
public ModuleReferenceTableEntry[] ModuleReferenceTable { get; set; } = [];
2025-09-26 12:09:34 -04:00
/// <summary>
/// Imported-Name table
/// </summary>
public Dictionary<ushort, ImportedNameTableEntry> ImportedNameTable { get; set; } = [];
2025-09-26 12:09:34 -04:00
/// <summary>
/// Entry table
/// </summary>
public EntryTableBundle[] EntryTable { get; set; } = [];
2025-09-26 12:09:34 -04:00
/// <summary>
/// Nonresident-Name table
/// </summary>
public NonResidentNameTableEntry[] NonResidentNameTable { get; set; } = [];
2025-09-26 12:09:34 -04:00
/// <summary>
/// Segment relocation data
/// </summary>
public PerSegmentData[] SegmentRelocationData { get; set; } = [];
2025-09-26 12:09:34 -04:00
}
}