maolan-baseview 0.0.2

A low-level windowing system geared towards making audio plugin UIs
1
2
3
4
5
6
7
8
9
10
#[cfg(target_os = "macos")]
use crate::macos as platform;
#[cfg(target_os = "windows")]
use crate::win as platform;
#[cfg(any(target_os = "linux", target_os = "freebsd"))]
use crate::x11 as platform;

pub fn copy_to_clipboard(data: &str) {
    platform::copy_to_clipboard(data)
}