Module lief::coff

Expand description

Module for the COFF file format support in LIEF.

The Binary structure exposes the main API to inspect a COFF file. It can be instantiated, using either: crate::coff::parse, crate::coff::Binary::parse or crate::Binary::parse

let coff = lief::coff::parse("demo.obj").unwrap();
for section in coff.sections() {
    println!("section: {}", section.name());
}

Modules

Structs

Enums

  • This enum represents the different types of COFF header.

Functions