]> git.proxmox.com Git - rustc.git/blame - vendor/object/src/read/pe/mod.rs
New upstream version 1.48.0+dfsg1
[rustc.git] / vendor / object / src / read / pe / mod.rs
CommitLineData
f035d41b
XL
1//! Support for reading ELF files.
2//!
3//! Defines traits to abstract over the difference between PE32/PE32+,
4//! and implements read functionality in terms of these traits.
5//!
6//! This module reuses some of the COFF functionality.
7//!
8//! Also provides `PeFile` and related types which implement the `Object` trait.
9
10mod file;
11pub use file::*;
12
13mod section;
14pub use section::*;
15
16pub use super::coff::{SectionTable, SymbolTable};