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
12
13
14
pub mod handles;
pub mod process;
pub mod thread;
pub mod window;
pub mod system;

pub use thread::{Thread, ThreadInfo, list_threads};
pub use window::{
    Window, WindowInfo, WindowFilter,
    list_windows, find_windows_by_title, find_windows_by_class,
    find_windows_by_process, get_window_text,
};
pub use system::{SystemInfo, get_system_info, get_memory_status, get_system_uptime, get_boot_time};
pub use process::{Process, ProcessAccess};