tlhelp32 1.0.1

A small wrapper around the tlhelp32 windows API
Documentation

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() {
    for entry in tlhelp32::Snapshot::new_process()? {
       println!("{:?}", entry);
    }
}