retour-utils 0.2.1

Utility crate for creating hooks with `retour`
1
2
3
4
5
6
7
8
9
10
11
12
13
#[test]
fn tests() {
    let t = trybuild::TestCases::new();
    t.pass("tests/build-tests/retain_other_items.rs");
    t.compile_fail("tests/build-tests/require_module_name.rs");
    t.pass("tests/build-tests/maintain_vis.rs")
}

#[test]
fn build_abi_types() {
    let t = trybuild::TestCases::new();
    t.pass("tests/build-tests/different_abis.rs");
}