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