portlight 0.0.2

Cross-platform window management for audio plugins
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(target_os = "windows")]
mod win32;
#[cfg(target_os = "windows")]
pub use win32::*;

#[cfg(target_os = "macos")]
mod app_kit;
#[cfg(target_os = "macos")]
pub use self::app_kit::*;

#[cfg(target_os = "linux")]
mod x11;
#[cfg(target_os = "linux")]
pub use x11::*;