tlhelp32

Crates.iotlhelp32
lib.rstlhelp32
version1.0.3
sourcesrc
created_at2018-12-18 14:21:42.398432
updated_at2019-06-24 19:36:48.666942
descriptionA small wrapper around the tlhelp32 windows API
homepage
repositoryhttps://github.com/Veykril/tlhelp32
max_upload_size
id102520
size18,049
Lukas Wirth (Veykril)

documentation

README

tlhelp32

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.

Example

fn main() -> std::io::Result<()> {
    for entry in tlhelp32::Snapshot::new_process()? {
       println!("{:?}", entry);
    }
    Ok(())
}
Commit count: 5

cargo fmt