4 stable releases
1.0.3 | Jun 24, 2019 |
---|---|
1.0.2 | Jan 23, 2019 |
1.0.1 | Dec 18, 2018 |
#186 in Windows APIs
17KB
334 lines
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(())
}
lib.rs
:
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.
Dependencies
~520–750KB