retour 0.3.1

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 = "static-detour")] {
        #[cfg_attr(docsrs, doc(cfg(feature = "static-detour")))]
        mod statik;
        pub use self::statik::*;
    }
}