2025-04-12 18:23:18 +03:00
|
|
|
namespace X86Disassembler.PE;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Represents the File header of a PE file
|
|
|
|
/// </summary>
|
|
|
|
public class FileHeader
|
2025-04-12 17:03:04 +03:00
|
|
|
{
|
2025-04-12 18:23:18 +03:00
|
|
|
public ushort Machine; // Target machine type
|
|
|
|
public ushort NumberOfSections; // Number of sections
|
|
|
|
public uint TimeDateStamp; // Time and date stamp
|
|
|
|
public uint PointerToSymbolTable; // File pointer to COFF symbol table
|
|
|
|
public uint NumberOfSymbols; // Number of symbols
|
|
|
|
public ushort SizeOfOptionalHeader; // Size of optional header
|
|
|
|
public ushort Characteristics; // Characteristics
|
|
|
|
}
|