mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-14 05:36:27 +00:00
18 lines
472 B
C#
18 lines
472 B
C#
namespace SabreTools.Models.NewExecutable
|
|
{
|
|
/// <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>
|
|
public OSFixupType FixupType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 0
|
|
/// </summary>
|
|
public ushort Reserved { get; set; }
|
|
}
|
|
}
|