Files
SabreTools.Models/NewExecutable/ImportOrdinalRelocationRecord.cs

20 lines
542 B
C#
Raw Normal View History

2024-04-23 13:30:43 -04:00
using System.Runtime.InteropServices;
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"/>
2024-04-23 13:30:43 -04:00
[StructLayout(LayoutKind.Sequential)]
2023-09-04 00:11:04 -04:00
public sealed class ImportOrdinalRelocationRecord
{
/// <summary>
/// Index into module reference table for the imported module.
/// </summary>
2024-04-23 13:30:43 -04:00
public ushort Index;
2023-09-04 00:11:04 -04:00
/// <summary>
/// Procedure ordinal number.
/// </summary>
2024-04-23 13:30:43 -04:00
public ushort Ordinal;
2023-09-04 00:11:04 -04:00
}
}