]> git.proxmox.com Git - rustc.git/blob - vendor/object/src/read/coff/mod.rs
New upstream version 1.72.1+dfsg1
[rustc.git] / vendor / object / src / read / coff / mod.rs
1 //! Support for reading Windows COFF files.
2 //!
3 //! Provides `CoffFile` and related types which implement the `Object` trait.
4
5 mod file;
6 pub use file::*;
7
8 mod section;
9 pub use section::*;
10
11 mod symbol;
12 pub use symbol::*;
13
14 mod relocation;
15 pub use relocation::*;
16
17 mod comdat;
18 pub use comdat::*;
19
20 mod import;
21 pub use import::*;