12 个版本
0.6.6 | 2024年7月20日 |
---|---|
0.6.4 | 2024年4月2日 |
0.6.3 | 2024年3月26日 |
0.3.2 |
|
6 在 #hacking 中排名
190 每月下载量
用于 vjector
41KB
1K SLoC
黑客库
// 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);
}