retour-utils 0.2.1

Utility crate for creating hooks with `retour`
1
2
3
4
5
6
7
8
9
10
11
use retour_utils::hook_module;

#[hook_module]
mod lua {
    #[hook(DtLuaLoad, offset = 0x1234)]
    fn lua_load() {

    }
}
// needed for trybuild
fn main() {}