dobby-hook
Facade crate for the dobby-hook-core inline-hook engine, with an optional higher-level framework.
This project is inspired by jmpews/Dobby (ideas, not code) and is not affiliated with it.
Install
Recommended (enable framework feature):
[]
= { = "0.1.4", = ["framework"] }
Core only:
[]
= "0.1.4"
What You Get
- Default: re-exports/typed access to the low-level core (
dobby-hook-core). - Feature
framework: ergonomic utilities (StaticHook<T>, typed handles, symbol helpers, etc.).
Quick Start (Framework)
use *;
static HOOK: = new;
Examples
The full set of runnable examples lives in the repository:
- GitHub: https://github.com/sorrow404Null/dobby-rs/tree/master/framework/examples
- Run one:
cargo run -p dobby-rs-framework --example static_hook_basic
Project Overview
- Repository README: https://github.com/sorrow404Null/dobby-rs#readme
Safety
Inline hooking patches executable code at runtime. Misuse can crash the process or cause undefined behavior.