1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
use std::sync::OnceLock;
use detour::RawDetour;
#[derive(Debug)]
pub struct Hook {
detour: OnceLock<RawDetour>,
}
impl Hook {
pub const fn new() -> Self {
Self {
detour: OnceLock::new(),
}
}
pub unsafe fn install(&self, target: *const (), hook: *const ()) -> bool {
match RawDetour::new(target, hook) {
Ok(detour) if detour.enable().is_ok() => {
self.detour.set(detour).ok();
true
}
_ => false,
}
}
pub fn is_installed(&self) -> bool {
self.detour.get().is_some()
}
pub fn original(&self) -> Option<*const ()> {
self.detour.get().map(|d| d.trampoline() as *const ())
}
}