Files
SabreTools.Models/NewExecutable/OSFixupRelocationRecord.cs

18 lines
472 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 OSFixupRelocationRecord
{
/// <summary>
/// Operating system fixup type.
/// Floating-point fixups.
/// </summary>
2023-09-10 21:24:10 -04:00
public OSFixupType FixupType { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// 0
/// </summary>
2023-09-10 21:24:10 -04:00
public ushort Reserved { get; set; }
2023-09-04 00:11:04 -04:00
}
}