]> git.proxmox.com Git - rustc.git/blame - vendor/object/src/read/pe/mod.rs
New upstream version 1.62.1+dfsg1
[rustc.git] / vendor / object / src / read / pe / mod.rs
CommitLineData
a2a8927a
XL
1//! Support for reading PE 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
16mod data_directory;
17pub use data_directory::*;
18
19mod export;
20pub use export::*;
21
22mod import;
23pub use import::*;
24
25mod relocation;
26pub use relocation::*;
27
04454e1e
FG
28mod resource;
29pub use resource::*;
30
a2a8927a
XL
31mod rich;
32pub use rich::*;
33
34pub use super::coff::{SectionTable, SymbolTable};