x-win 5.7.0

This package allows you to retrieve precise information about active and open windows on Windows, MacOS, and Linux. You can obtain the position, size, title, and other memory of windows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![deny(unused_imports)]

mod api;
pub mod permission;

use crate::common::api::Api;
use api::MacosAPI;

pub fn init_platform_api() -> impl Api {
  MacosAPI {}
}