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 
10 mod file;
11 pub use file::*;
12 
13 mod section;
14 pub use section::*;
15 
16 pub use super::coff::{SectionTable, SymbolTable};
17