12 releases
0.6.6 | Jul 20, 2024 |
---|---|
0.6.4 | Apr 2, 2024 |
0.6.3 | Mar 26, 2024 |
0.3.2 |
|
#287 in Testing
1,196 downloads per month
Used in vjector
41KB
1K
SLoC
Hacking Library
// tests/external.rs
let pid = vcheat::external::get_pid("explorer.exe").unwrap();
let mi = vcheat::external::get_mod_info(pid, "explorer.exe").unwrap();
println!("{:#?}", mi);
let mis = vcheat::external::get_all_mod_info(pid).unwrap();
for mi in mis {
println!("{:#?}", mi);
}