Add NE per segment data

This commit is contained in:
Matt Nadareski
2022-11-04 10:25:48 -07:00
parent 58181bd723
commit 2e42efa71f
8 changed files with 226 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
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;
}
}