Skip to content

Commit

Permalink
write/coff: add Writer
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc committed Nov 16, 2023
1 parent 1377b10 commit d81eb2d
Show file tree
Hide file tree
Showing 4 changed files with 609 additions and 233 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 d81eb2d

Please sign in to comment.