detour3 0.1.0

A cross-platform detour library written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use cfg_if::cfg_if;

mod generic;
mod raw;

pub use self::generic::*;
pub use self::raw::*;

cfg_if! {
    if #[cfg(feature = "nightly")] {
        mod statik;
        pub use self::statik::*;
    } else {
    }
}