Skip to content

Commit

Permalink
write/coff: add Writer (#595)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc authored Nov 24, 2023
1 parent 1377b10 commit ff50233
Show file tree
Hide file tree
Showing 6 changed files with 632 additions and 235 deletions.
10 changes: 10 additions & 0 deletions src/write/coff/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
//! Support for writing COFF files.
//!
//! Provides [`Writer`] for low level writing of COFF files.
//! This is also used to provide COFF support for [`write::Object`](crate::write::Object).
mod object;
pub use self::object::*;

mod writer;
pub use writer::*;
Loading

0 comments on commit ff50233

Please sign in to comment.