-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
604 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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::*; |
Oops, something went wrong.