injector 0.0.1

A library able to inject a shared library into another process.
Documentation
1
2
3
4
5
6
7
8
9
10
//! `cargo run --example injector`

extern crate injector;

fn main() {
    injector::it_works();

    Ok(())
}