fishhook 0.2.0

A library that enables dynamically rebinding symbols in Mach-O binaries at runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg_attr(target_os = "macos", path = "darwin.rs")]
#[cfg_attr(target_os = "linux", path = "linux.rs")]
mod platform;

pub use platform::*;

#[derive(Clone)]
pub struct Rebinding {
    pub name: String,
    pub function: usize,
}