using System.Runtime.InteropServices;
namespace BurnOutSharp.Models.NewExecutable
{
///
/// The module-reference table follows the resident-name table. Each entry
/// contains an offset for the module-name string within the imported-
/// names table; each entry is 2 bytes long.
///
///
[StructLayout(LayoutKind.Sequential)]
public class ModuleReferenceTableEntry
{
///
/// Offset within Imported Names Table to referenced module name string.
///
public ushort Offset;
}
}