window-getter 0.1.2

The library for retrieving information about the windows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Platform-specific implementations for window.

#[cfg(target_os = "macos")]
pub mod macos;
#[cfg(target_os = "windows")]
pub mod windows;

#[cfg(target_os = "macos")]
pub use macos::{
    MacOSBounds as PlatformBounds, MacOSError as PlatformError, MacOSWindow as PlatformWindow,
    MacOSWindowId as PlatformWindowId, get_window, get_windows,
};
#[cfg(target_os = "windows")]
pub use windows::{
    WindowsBounds as PlatformBounds, WindowsError as PlatformError,
    WindowsWindow as PlatformWindow, WindowsWindowId as PlatformWindowId, get_window, get_windows,
};