Crates.io | tlhelp32 |
lib.rs | tlhelp32 |
version | 1.0.3 |
source | src |
created_at | 2018-12-18 14:21:42.398432 |
updated_at | 2019-06-24 19:36:48.666942 |
description | A small wrapper around the tlhelp32 windows API |
homepage | |
repository | https://github.com/Veykril/tlhelp32 |
max_upload_size | |
id | 102520 |
size | 18,049 |
An abstraction over the windows tlhelp32 api. It offers a generic Snapshot struct which acts as an iterator to easily iterate over the returned entries.
fn main() -> std::io::Result<()> {
for entry in tlhelp32::Snapshot::new_process()? {
println!("{:?}", entry);
}
Ok(())
}