| Crates.io | vcheat |
| lib.rs | vcheat |
| version | 0.6.6 |
| created_at | 2023-08-09 17:01:27.213229+00 |
| updated_at | 2024-07-20 06:20:39.855982+00 |
| description | Hacking Library |
| homepage | |
| repository | https://github.com/sylvavv/vcheat |
| max_upload_size | |
| id | 940205 |
| size | 48,386 |
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);
}