using System.Runtime.InteropServices;
namespace NitroxModel.Platforms.OS.Windows.Internal
{
///
/// See:
/// MSDN
///
[StructLayout(LayoutKind.Sequential)]
public struct CoffFileHeader
{
///
/// Machine type that is targeted by this image.
///
public MachineType Machine;
public ushort NumberOfSections;
public uint TimeDateStamp;
public uint PointerToSymbolTable;
public uint NumberOfSymbols;
public ushort SizeOfOptionalHeader;
public ushort Characteristics;
}
}