namespace SabreTools.Data.Models.COFF
{
public static class Constants
{
///
/// Fixed size of
///
public const int FileHeaderSize = 20;
///
/// Fixed size of
///
public const int SectionHeaderSize = 40;
///
/// Fixed size of
///
public const int SymbolTableEntrySize = 18;
}
}