dobby-hook-core 0.1.4

Dobby-like low-level inline hook core in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::error::{Error, Result};
use core::ffi::{CStr, c_void};

pub(super) fn import_table_replace(
    _image_name: Option<&CStr>,
    _symbol_name: &CStr,
    _fake_func: *mut c_void,
) -> Result<*mut c_void> {
    Err(Error::UnsupportedPlatform)
}