crosswin 0.4.0

Async-friendly Windows primitives for Rust with process management, memory monitoring, and system operations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crosswin::prelude::*;

#[tokio::main]
async fn main() -> crosswin::Result<()> {
    let windows = list_windows().await?;
    println!("Found {} windows", windows.len());
    for w in windows {
        println!("{:?}", w);
    }
    Ok(())
}