Class PE64

java.lang.Object
org.eclipse.cdt.utils.coff.PE64
All Implemented Interfaces:
AutoCloseable

public class PE64 extends Object implements AutoCloseable
The PE file header consists of an MS-DOS stub, the PE signature, the COFF file Header and an Optional Header.
  +-------------------+
  | DOS-stub          |
  +-------------------+
  | file-header       |
  +-------------------+
  | optional header   |
  |- - - - - - - - - -|
  |                   |
  | data directories  |
  |                   |
  +-------------------+
  |                   |
  | section headers   |
  |                   |
  +-------------------+
  |                   |
  | section 1         |
  |                   |
  +-------------------+
  |                   |
  | section 2         |
  |                   |
  +-------------------+
  |                   |
  | ...               |
  |                   |
  +-------------------+
  |                   |
  | section n         |
  |                   |
  +-------------------+
 
Since:
6.9