mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-12 05:35:17 +00:00
21 lines
522 B
C#
21 lines
522 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace BurnOutSharp.Models.NewExecutable
|
|
{
|
|
/// <see href="http://bytepointer.com/resources/win16_ne_exe_format_win3.0.htm"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public class OSFixupRelocationRecord
|
|
{
|
|
/// <summary>
|
|
/// Operating system fixup type.
|
|
/// Floating-point fixups.
|
|
/// </summary>
|
|
public OSFixupType FixupType;
|
|
|
|
/// <summary>
|
|
/// 0
|
|
/// </summary>
|
|
public ushort Reserved;
|
|
}
|
|
}
|