[go: up one dir, main page]

windows-win 0.2.1

Some windows hacking library with utilities to find windows and access them
1
2
3
4
5
6
7
8
9
10
11
extern crate windows_win;

use windows_win::get_windows_by_class;

#[test]
fn test_get_windows_by_class() {
    let result = get_windows_by_class("IME", None);
    assert!(result.is_ok());
    let result = result.unwrap();
    assert!(result.len() > 0);
}