road_internal 0.1.0

Internal crate used for road linker
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![warn(missing_docs)]
//! This module is separated into its own crate to enable simple dynamic linking for Road, and should not be used directly

pub mod elf {
    //! Handle ELF files
    pub use road_elf::*;
}

pub mod pe {
    //! Handle PE files
    pub use road_pe::*;
}

pub mod macho {
    //! Handle Mach-O files
    pub use road_macho::*;
}