computeruse-rs 2.0.0

A Playwright-style SDK for automating desktop GUI applications
1
2
3
4
5
6
7
8
9
10
11
//! Check caret position via Console APIs (for cmd/PowerShell)
//!
//! Note: This example requires the `Win32_System_Console` feature in the windows crate,
//! which is not enabled by default. This example is currently disabled.

fn main() {
    // This example is currently disabled as it requires additional windows crate features.
    // To enable, add `Win32_System_Console` feature to the windows dependency.
    println!("This example requires the 'Win32_System_Console' feature in the windows crate.");
    println!("It is currently disabled. See source code for details.");
}