Macro load

Source
macro_rules! load {
    ($name:expr) => { ... };
    ($name:expr,$bytes:expr) => { ... };
}
Expand description

Load a elf file into memory

ยงExample

// from file
let liba = load!("target/liba.so");
// from memory
let liba = load!("liba.so", bytes);