Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
write/coff: add Writer
Browse files Browse the repository at this point in the history
philipc committed Nov 17, 2023
1 parent 1377b10 commit e684bd9
Showing 4 changed files with 604 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 e684bd9

Please sign in to comment.