tasklist 0.3.1

Get the tasklist and process information on windows
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Platform-specific implementation for Windows
//!
//! Contains Windows-specific types and functionality implementations

pub mod handle;
pub use handle::{ProcessHandle, SnapshotHandle, TokenHandle};

#[cfg(test)]
mod tests {
    // Windows platform specific tests
}