hooking 0.4.0

hooking libs in rust
Documentation
pub mod asm;
pub mod error;
pub mod hooks;
pub mod mem;

cfg_select! {
    feature = "macros" => {
        mod macros;

        pub use hooking_macros::hook;
        pub mod __macro_support {
            pub use super::macros::*;
        }
    }
    _ => {}
}

pub use hooks::{Hook, HookData, HookWriter};
pub(crate) const ORIGINAL_FN_CHECKSUM_MAGIC: usize = 0xDEADBEEFCAFEBABE;
pub fn original_function_ptr() -> Option<core::ptr::NonNull<core::ffi::c_void>> {
    let mut orig_addr: *mut core::ffi::c_void = core::ptr::null_mut();
    let mut checksum = 0usize;
    unsafe {
        core::arch::asm!(
        "nop",
        lateout("r10") orig_addr,
        lateout("r11") checksum,
        );

        ((orig_addr as usize ^ ORIGINAL_FN_CHECKSUM_MAGIC) == checksum)
            .then(|| core::ptr::NonNull::new_unchecked(orig_addr))
    }
}