mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-05-19 11:51:17 +03:00
15 lines
590 B
C#
15 lines
590 B
C#
namespace X86Disassembler.PE;
|
|
|
|
/// <summary>
|
|
/// Represents the File header of a PE file
|
|
/// </summary>
|
|
public class FileHeader
|
|
{
|
|
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
|
|
} |