We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1377b10 commit 127554bCopy full SHA for 127554b
src/write/coff/mod.rs
@@ -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