32 lines
487 B
Rust
32 lines
487 B
Rust
use std::ffi::c_void;
|
|
|
|
#[cfg(target_os = "windows")]
|
|
mod win;
|
|
#[cfg(target_os = "windows")]
|
|
pub use win::*;
|
|
|
|
#[cfg(target_os = "linux")]
|
|
mod x11;
|
|
#[cfg(target_os = "linux")]
|
|
pub use x11::*;
|
|
|
|
#[cfg(target_os = "macos")]
|
|
mod macos;
|
|
#[cfg(target_os = "macos")]
|
|
pub use macos::*;
|
|
|
|
pub enum Parent {
|
|
None,
|
|
AsIfParented,
|
|
WithParent(*mut c_void),
|
|
}
|
|
|
|
pub struct WindowOpenOptions<'a> {
|
|
pub title: &'a str,
|
|
|
|
pub width: usize,
|
|
pub height: usize,
|
|
|
|
pub parent: Parent,
|
|
}
|