mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
ad1e302621
fixed Filter button disabling/enabling git-svn-id: svn://svn.code.sf.net/p/processhacker/code@75 21ef857c-d57f-4fe0-8362-d861dc6d29cd
72 lines
2.5 KiB
C#
72 lines
2.5 KiB
C#
/*
|
|
* Process Hacker
|
|
*
|
|
* Descriptions from the PE/COFF specification v8 from Microsoft.
|
|
*/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.IO;
|
|
|
|
namespace ProcessHacker.PE
|
|
{
|
|
/// <summary>
|
|
/// Represents a COFF header.
|
|
/// </summary>
|
|
public class COFFHeader
|
|
{
|
|
public COFFHeader(BinaryReader br)
|
|
{
|
|
this.Machine = (MachineType)br.ReadUInt16();
|
|
this.NumberOfSections = br.ReadUInt16();
|
|
this.TimeDateStamp = br.ReadUInt32();
|
|
this.PointerToSymbolTable = br.ReadUInt32();
|
|
this.NumberOfSymbols = br.ReadUInt32();
|
|
this.SizeOfOptionalHeader = br.ReadUInt16();
|
|
this.Characteristics = (ImageCharacteristics)br.ReadUInt16();
|
|
}
|
|
|
|
/// <summary>
|
|
/// The number that identifies the type of target machine.
|
|
/// </summary>
|
|
public MachineType Machine;
|
|
|
|
/// <summary>
|
|
/// The number of sections. This indicates the size of the section table, which
|
|
/// immediately follows the headers.
|
|
/// </summary>
|
|
public ushort NumberOfSections;
|
|
|
|
/// <summary>
|
|
/// The low 32 bits of the number of seconds since 00:00 January 1, 1970 (a C run-time
|
|
/// time_t value), that indicates when the file was created.
|
|
/// </summary>
|
|
public uint TimeDateStamp;
|
|
|
|
/// <summary>
|
|
/// The file offset of the COFF symbol table, or zero if no COFF symbol table is present.
|
|
/// This value should be zero for an image because COFF debugging information is deprecated.
|
|
/// </summary>
|
|
public uint PointerToSymbolTable;
|
|
|
|
/// <summary>
|
|
/// The number of entries in the symbol table. This data can be used to locate the string
|
|
/// table, which immediately follows the symbol table. This value should be zero for an image
|
|
/// because COFF debugging information is deprecated.
|
|
/// </summary>
|
|
public uint NumberOfSymbols;
|
|
|
|
/// <summary>
|
|
/// The size of the optional header, which is required for executable files but not for
|
|
/// object files. This value should be zero for an object file.
|
|
/// </summary>
|
|
public ushort SizeOfOptionalHeader;
|
|
|
|
/// <summary>
|
|
/// The flags that indicate the attributes of the file.
|
|
/// </summary>
|
|
public ImageCharacteristics Characteristics;
|
|
}
|
|
}
|