Skip to content

Commit 127554b

Browse files
committed
write/coff: add Writer
1 parent 1377b10 commit 127554b

File tree

4 files changed

+605
-233
lines changed

4 files changed

+605
-233
lines changed

src/write/coff/mod.rs

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
//! Support for writing COFF files.
2+
//!
3+
//! Provides [`Writer`] for low level writing of COFF files.
4+
//! This is also used to provide COFF support for [`write::Object`](crate::write::Object).
5+
6+
mod object;
7+
pub use self::object::*;
8+
9+
mod writer;
10+
pub use writer::*;

0 commit comments

Comments
 (0)